diff options
Diffstat (limited to 'libbb/read_printf.c')
-rw-r--r-- | libbb/read_printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/read_printf.c b/libbb/read_printf.c index 1e67d6542..379dd2448 100644 --- a/libbb/read_printf.c +++ b/libbb/read_printf.c | |||
@@ -222,7 +222,7 @@ void FAST_FUNC xread(int fd, void *buf, size_t count) | |||
222 | if (count) { | 222 | if (count) { |
223 | ssize_t size = full_read(fd, buf, count); | 223 | ssize_t size = full_read(fd, buf, count); |
224 | if ((size_t)size != count) | 224 | if ((size_t)size != count) |
225 | bb_error_msg_and_die("short read"); | 225 | bb_simple_error_msg_and_die("short read"); |
226 | } | 226 | } |
227 | } | 227 | } |
228 | 228 | ||