aboutsummaryrefslogtreecommitdiff
path: root/libbb/read_printf.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2019-08-16 09:42:39 +0100
committerRon Yorston <rmy@pobox.com>2019-08-16 09:45:21 +0100
commit517cf74f6265ec4308b790b637b3f9778cbdc6e0 (patch)
treebe9337069b60ca1bb03565d8575bacfc71181003 /libbb/read_printf.c
parentae65dc37bcc9b1d9cef0b111131c79dc4ba1bf51 (diff)
parentac78f2ac96b3efd6551a08e7dc609efa1fb69481 (diff)
downloadbusybox-w32-517cf74f6265ec4308b790b637b3f9778cbdc6e0.tar.gz
busybox-w32-517cf74f6265ec4308b790b637b3f9778cbdc6e0.tar.bz2
busybox-w32-517cf74f6265ec4308b790b637b3f9778cbdc6e0.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'libbb/read_printf.c')
-rw-r--r--libbb/read_printf.c2
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