.
authorJim Meyering <jim@meyering.net>
Sat, 29 Jan 1994 19:06:23 +0000 (19:06 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 29 Jan 1994 19:06:23 +0000 (19:06 +0000)
src/du.c

index 84d92bd..70e4b7a 100644 (file)
--- a/src/du.c
+++ b/src/du.c
@@ -392,9 +392,9 @@ count_entry (ent, top, last_dev)
 {
   long size;
 
-  if ((top && opt_dereference_arguments ?
-      stat (ent, &stat_buf) :
-      (*xstat) (ent, &stat_buf)) < 0)
+  if (((top && opt_dereference_arguments)
+       ? stat (ent, &stat_buf)
+       : (*xstat) (ent, &stat_buf)) < 0)
     {
       error (0, errno, "%s", path->text);
       exit_status = 1;