diff options
author | Jim Meyering <jim@meyering.net> | 2002-04-15 07:20:15 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-04-15 07:20:15 +0000 |
commit | ad02a0f47db367e904a6160816662a413457a537 (patch) | |
tree | c210c747b10f8c0691beb469e5c0f0f421261d01 /src | |
parent | f7d204bce417349acacf70779b89a7aa3557c48a (diff) | |
download | coreutils-ad02a0f47db367e904a6160816662a413457a537.tar.xz |
remove parens in #if directives
Diffstat (limited to 'src')
-rw-r--r-- | src/stat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stat.c b/src/stat.c index 62459d730..9165a10ab 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 |