| 660 |
char buf[UINTMAX_STRSIZE_BOUND]; |
char buf[UINTMAX_STRSIZE_BOUND]; |
| 661 |
int e = errno; |
int e = errno; |
| 662 |
ERROR ((0, e, |
ERROR ((0, e, |
| 663 |
_("%s: Read error at byte %s, reading %lu bytes"), |
ngettext ("%s: Read error at byte %s, reading %lu byte", |
| 664 |
|
"%s: Read error at byte %s, reading %lu bytes", |
| 665 |
|
size), |
| 666 |
quotearg_colon (name), STRINGIFY_BIGINT (offset, buf), |
quotearg_colon (name), STRINGIFY_BIGINT (offset, buf), |
| 667 |
(unsigned long) size)); |
(unsigned long) size)); |
| 668 |
} |
} |
| 673 |
char buf[UINTMAX_STRSIZE_BOUND]; |
char buf[UINTMAX_STRSIZE_BOUND]; |
| 674 |
int e = errno; |
int e = errno; |
| 675 |
WARN ((0, e, |
WARN ((0, e, |
| 676 |
_("%s: Warning: Read error at byte %s, reading %lu bytes"), |
ngettext ("%s: Warning: Read error at byte %s, reading %lu byte", |
| 677 |
|
"%s: Warning: Read error at byte %s, reading %lu bytes", |
| 678 |
|
size), |
| 679 |
quotearg_colon (name), STRINGIFY_BIGINT (offset, buf), |
quotearg_colon (name), STRINGIFY_BIGINT (offset, buf), |
| 680 |
(unsigned long) size)); |
(unsigned long) size)); |
| 681 |
} |
} |
| 692 |
char buf[UINTMAX_STRSIZE_BOUND]; |
char buf[UINTMAX_STRSIZE_BOUND]; |
| 693 |
int e = errno; |
int e = errno; |
| 694 |
FATAL_ERROR ((0, e, |
FATAL_ERROR ((0, e, |
| 695 |
_("%s: Read error at byte %s, reading %lu bytes"), |
ngettext ("%s: Read error at byte %s, reading %lu byte", |
| 696 |
|
"%s: Read error at byte %s, reading %lu bytes", |
| 697 |
|
size), |
| 698 |
quotearg_colon (name), STRINGIFY_BIGINT (offset, buf), |
quotearg_colon (name), STRINGIFY_BIGINT (offset, buf), |
| 699 |
(unsigned long) size)); |
(unsigned long) size)); |
| 700 |
} |
} |
| 817 |
if (status < 0) |
if (status < 0) |
| 818 |
write_error (name); |
write_error (name); |
| 819 |
else |
else |
| 820 |
ERROR ((0, 0, _("%s: Wrote only %lu of %lu bytes"), |
ERROR ((0, 0, |
| 821 |
|
ngettext ("%s: Wrote only %lu of %lu byte", |
| 822 |
|
"%s: Wrote only %lu of %lu bytes", |
| 823 |
|
record_size), |
| 824 |
name, (unsigned long) status, (unsigned long) record_size)); |
name, (unsigned long) status, (unsigned long) record_size)); |
| 825 |
} |
} |
| 826 |
|
|