From: Jim Meyering Date: Tue, 22 Jan 2002 10:47:14 +0000 (+0000) Subject: remove the parens I just added to Paul's patch X-Git-Tag: TEXTUTILS-2_0_20~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8053809f87560168dcc43647d98f7526071b691;p=thirdparty%2Fcoreutils.git remove the parens I just added to Paul's patch --- diff --git a/src/sys2.h b/src/sys2.h index 48608cb18a..610c1fd0a0 100644 --- a/src/sys2.h +++ b/src/sys2.h @@ -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