diff options
author | Denis Vlasenko | 2006-11-29 18:15:52 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-29 18:15:52 +0000 |
commit | c6ce8733dda7e6f9146e0a040048aebea0c2e589 (patch) | |
tree | fb5fd16229f7c9f34423c4f27ed47cc19e7434df /libbb/xfuncs.c | |
parent | a35c9e91ba53073ff797d1d68d0d4e1836d934f0 (diff) | |
download | busybox-c6ce8733dda7e6f9146e0a040048aebea0c2e589.zip busybox-c6ce8733dda7e6f9146e0a040048aebea0c2e589.tar.gz |
cut 0.5k off mkfs.minix
assorted strtoul fixes (that's what brought me into minix)...
Diffstat (limited to 'libbb/xfuncs.c')
-rw-r--r-- | libbb/xfuncs.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index ade6395..313e328 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -147,8 +147,11 @@ void xwrite(int fd, const void *buf, size_t count) off_t xlseek(int fd, off_t offset, int whence) { off_t off = lseek(fd, offset, whence); - if (off == (off_t)-1) + if (off == (off_t)-1) { + if (whence == SEEK_SET) + bb_perror_msg_and_die("lseek(%"OFF_FMT"u)", offset); bb_perror_msg_and_die("lseek"); + } return off; } |