aboutsummaryrefslogtreecommitdiffstats
path: root/src/chmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/chmod.c')
-rw-r--r--src/chmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chmod.c b/src/chmod.c
index 272c19e6d..98db5fa11 100644
--- a/src/chmod.c
+++ b/src/chmod.c
@@ -248,7 +248,7 @@ process_file (FTS *fts, FTSENT *ent)
/* Tell fts not to traverse into this hierarchy. */
fts_set (fts, ent, FTS_SKIP);
/* Ensure that we do not process "/" on the second visit. */
- ignore_ptr (fts_read (fts));
+ ignore_value (fts_read (fts));
return false;
}