]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
remove the parens I just added to Paul's patch
authorJim Meyering <jim@meyering.net>
Tue, 22 Jan 2002 10:47:14 +0000 (10:47 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 22 Jan 2002 10:47:14 +0000 (10:47 +0000)
src/sys2.h

index 48608cb18a3835fccf53a30b3692893f4fab3f8e..610c1fd0a06ae6c8d9123c7b3c1d16d4ec8dd038 100644 (file)
@@ -560,6 +560,6 @@ enum
 
 #if ! HAVE_FSEEKO && ! defined fseeko
 # define fseeko(s, o, w) ((o) == (long) (o)            \
-                         ? fseek ((s), (o), (w))       \
+                         ? fseek (s, o, w)             \
                          : (errno = EOVERFLOW, -1))
 #endif