small style fixes

This commit is contained in:
Denis Vlasenko
2006-10-12 19:29:44 +00:00
parent 12f5676cce
commit a6dbb08a48
8 changed files with 24 additions and 16 deletions

View File

@@ -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.