From 7b3845a4a5759f26055bc9283e5f9d79b1255e57 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 29 Jan 1994 19:06:23 +0000 Subject: . --- src/du.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/du.c b/src/du.c index 84d92bd46..70e4b7af7 100644 --- 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; -- cgit v1.2.3-54-g00ecf