diff options
author | Jim Meyering <jim@meyering.net> | 1994-01-29 19:06:23 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1994-01-29 19:06:23 +0000 |
commit | 7b3845a4a5759f26055bc9283e5f9d79b1255e57 (patch) | |
tree | 52106440f911b8167e4156002114bc9612fcbb29 /src | |
parent | 200b442ee4e8e0a6cf58bff092289051ae803d3d (diff) | |
download | coreutils-7b3845a4a5759f26055bc9283e5f9d79b1255e57.tar.xz |
.
Diffstat (limited to 'src')
-rw-r--r-- | src/du.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |