diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/od_bloaty.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index c69470a14..74765f842 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c | |||
@@ -542,7 +542,7 @@ check_and_close(void) | |||
542 | fmt = SIGNED_DECIMAL; | 542 | fmt = SIGNED_DECIMAL; |
543 | size = INT or LONG; (whichever integral_type_size[4] resolves to) | 543 | size = INT or LONG; (whichever integral_type_size[4] resolves to) |
544 | print_function = print_int; (assuming size == INT) | 544 | print_function = print_int; (assuming size == INT) |
545 | fmt_string = "%011d%c"; | 545 | fmt_string = "%011d%c"; |
546 | } | 546 | } |
547 | S_ORIG is solely for reporting errors. It should be the full format | 547 | S_ORIG is solely for reporting errors. It should be the full format |
548 | string argument. */ | 548 | string argument. */ |
@@ -823,7 +823,7 @@ skip(off_t n_skip) | |||
823 | n_bytes_read = fread(buf, 1, n_bytes_to_read, in_stream); | 823 | n_bytes_read = fread(buf, 1, n_bytes_to_read, in_stream); |
824 | n_skip -= n_bytes_read; | 824 | n_skip -= n_bytes_read; |
825 | if (n_bytes_read != n_bytes_to_read) | 825 | if (n_bytes_read != n_bytes_to_read) |
826 | break; /* EOF on this file or error */ | 826 | break; /* EOF on this file or error */ |
827 | } | 827 | } |
828 | } | 828 | } |
829 | if (n_skip == 0) | 829 | if (n_skip == 0) |
@@ -1334,7 +1334,7 @@ int od_main(int argc, char **argv) | |||
1334 | /* If the --traditional option is used, there may be from | 1334 | /* If the --traditional option is used, there may be from |
1335 | * 0 to 3 remaining command line arguments; handle each case | 1335 | * 0 to 3 remaining command line arguments; handle each case |
1336 | * separately. | 1336 | * separately. |
1337 | * od [file] [[+]offset[.][b] [[+]label[.][b]]] | 1337 | * od [file] [[+]offset[.][b] [[+]label[.][b]]] |
1338 | * The offset and pseudo_start have the same syntax. | 1338 | * The offset and pseudo_start have the same syntax. |
1339 | * | 1339 | * |
1340 | * FIXME: POSIX 1003.1-2001 with XSI requires support for the | 1340 | * FIXME: POSIX 1003.1-2001 with XSI requires support for the |