From: Jim Meyering Date: Mon, 15 Apr 2002 07:20:15 +0000 (+0000) Subject: remove parens in #if directives X-Git-Tag: SH-UTILS-2_0_12~151 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ad02a0f47db367e904a6160816662a413457a537;p=thirdparty%2Fcoreutils.git remove parens in #if directives --- diff --git a/src/stat.c b/src/stat.c index 62459d7301..9165a10abe 100644 --- a/src/stat.c +++ b/src/stat.c @@ -96,7 +96,7 @@ print_human_fstype (struct statfs const *statfsbuf) switch (statfsbuf->f_type) { -#if defined (__linux__) +#if defined __linux__ case S_MAGIC_AFFS: type = "affs"; break; @@ -317,7 +317,7 @@ print_statfs (char *pformat, char m, char const *filename, break; case 'i': -#if !defined(__linux__) && defined (__GNU__) +#if !defined __linux__ && defined __GNU__ strcat (pformat, "Lx"); printf (pformat, statfsbuf->f_fsid); #else