From: Jim Meyering Date: Sat, 23 Jan 1999 15:34:18 +0000 (+0000) Subject: add parens around STREQ X-Git-Tag: TEXTUTILS-1_22h~131 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68e327564d1ae65bdba845d5337cbd8fec5ce369;p=thirdparty%2Fcoreutils.git add parens around STREQ --- diff --git a/src/shred.c b/src/shred.c index 0d2662cb48..5685e2b6d4 100644 --- a/src/shred.c +++ b/src/shred.c @@ -1358,7 +1358,7 @@ main (int argc, char **argv) for (i = 0; i < n_files; i++) { - if STREQ (file[i], "-") + if (STREQ (file[i], "-")) { if (wipefd (0, file[i], &s, (size_t) n_passes, &flags) < 0) err = 1;