svn commit: trunk/busybox/libbb

landley at busybox.net landley at busybox.net
Fri Aug 4 05:24:59 UTC 2006


Author: landley
Date: 2006-08-03 22:24:58 -0700 (Thu, 03 Aug 2006)
New Revision: 15774

Log:
Thinko spotted by Vladimir Dronnikov.


Modified:
   trunk/busybox/libbb/xfuncs.c


Changeset:
Modified: trunk/busybox/libbb/xfuncs.c
===================================================================
--- trunk/busybox/libbb/xfuncs.c	2006-08-03 20:39:59 UTC (rev 15773)
+++ trunk/busybox/libbb/xfuncs.c	2006-08-04 05:24:58 UTC (rev 15774)
@@ -144,7 +144,7 @@
 
 void xlseek(int fd, off_t offset, int whence)
 {
-	if (whence != lseek(fd, offset, whence)) bb_error_msg_and_die("lseek");
+	if (offset != lseek(fd, offset, whence)) bb_error_msg_and_die("lseek");
 }
 #endif
 




More information about the busybox-cvs mailing list