diff options
author | Denis Vlasenko | 2006-10-12 19:29:44 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-12 19:29:44 +0000 |
commit | a6dbb08a48903cb8f31fad2cf2d1cffa92bd4808 (patch) | |
tree | f7f2113941a2dc0385080baa7656ead41f45f834 /libbb/xfuncs.c | |
parent | 12f5676cce3b2e04668df3f18f94f1a3c7fdbb9e (diff) | |
download | busybox-a6dbb08a48903cb8f31fad2cf2d1cffa92bd4808.zip busybox-a6dbb08a48903cb8f31fad2cf2d1cffa92bd4808.tar.gz |
small style fixes
Diffstat (limited to 'libbb/xfuncs.c')
-rw-r--r-- | libbb/xfuncs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 8428110..d22cd27 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -137,7 +137,8 @@ void xwrite(int fd, void *buf, size_t count) // Die with an error message if we can't lseek to the right spot. void xlseek(int fd, off_t offset, int whence) { - if (offset != lseek(fd, offset, whence)) bb_error_msg_and_die("lseek"); + if (offset != lseek(fd, offset, whence)) + bb_error_msg_and_die("lseek"); } // Die with an error message if we can't read one character. |