Add a leading space to the exit status codes, for readability.

This commit is contained in:
Andrew Wood
2024-12-10 21:01:38 +00:00
parent 9ceda2059d
commit 35fdb331e4
2 changed files with 12 additions and 12 deletions
+6 -6
View File
@@ -571,22 +571,22 @@ or \*(lq\fB\-\-pidfile\fR\*(rq options.
.PP .PP
Any other exit status is a bitmask of the following: Any other exit status is a bitmask of the following:
.TP 5 .TP 5
.B 2 .B \~2
One or more files could not be accessed, \fBstat\fR(2)ed, or opened. One or more files could not be accessed, \fBstat\fR(2)ed, or opened.
.TP .TP
.B 4 .B \~4
An input file was the same as the output file. An input file was the same as the output file.
.TP .TP
.B 8 .B \~8
Internal error with closing a file or moving to the next file. Internal error with closing a file or moving to the next file.
.TP .TP
.B 16 .B \~16
There was an error while transferring data from one or more input files. There was an error while transferring data from one or more input files.
.TP .TP
.B 32 .B \~32
A signal was caught that caused an early exit. A signal was caught that caused an early exit.
.TP .TP
.B 64 .B \~64
Memory allocation failed. Memory allocation failed.
.PP .PP
A zero exit status indicates no problems. A zero exit status indicates no problems.
+6 -6
View File
@@ -565,28 +565,28 @@ An exit status of 1 indicates a problem with the "**\--remote**" or
Any other exit status is a bitmask of the following: Any other exit status is a bitmask of the following:
**2** ** 2**
: One or more files could not be accessed, **stat**(2)ed, or opened. : One or more files could not be accessed, **stat**(2)ed, or opened.
**4** ** 4**
: An input file was the same as the output file. : An input file was the same as the output file.
**8** ** 8**
: Internal error with closing a file or moving to the next file. : Internal error with closing a file or moving to the next file.
**16** ** 16**
: There was an error while transferring data from one or more input : There was an error while transferring data from one or more input
files. files.
**32** ** 32**
: A signal was caught that caused an early exit. : A signal was caught that caused an early exit.
**64** ** 64**
: Memory allocation failed. : Memory allocation failed.