summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-04-15 07:20:15 +0000
committerJim Meyering <jim@meyering.net>2002-04-15 07:20:15 +0000
commitad02a0f47db367e904a6160816662a413457a537 (patch)
treec210c747b10f8c0691beb469e5c0f0f421261d01 /src
parentf7d204bce417349acacf70779b89a7aa3557c48a (diff)
downloadcoreutils-ad02a0f47db367e904a6160816662a413457a537.tar.xz
remove parens in #if directives
Diffstat (limited to 'src')
-rw-r--r--src/stat.c4
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