]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
remove parens in #if directives
authorJim Meyering <jim@meyering.net>
Mon, 15 Apr 2002 07:20:15 +0000 (07:20 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 15 Apr 2002 07:20:15 +0000 (07:20 +0000)
src/stat.c

index 62459d7301ebcee246174f77bb26f9931f1d04a7..9165a10abe2f7d5d8c26042d134246543cbf3a7d 100644 (file)
@@ -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