From 8581bcc9e3610be735c393650605b56f019695af Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 29 May 2008 18:01:05 +0200 Subject: [PATCH] du.c: tiny cleanup (no semantic change) * src/du.c (process_file): Use "file", rather than equivalent "ent->fts_path". --- src/du.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/du.c b/src/du.c index 4d50622..b67b89c 100644 --- a/src/du.c +++ b/src/du.c @@ -482,7 +482,7 @@ process_file (FTS *fts, FTSENT *ent) bool skip; /* If necessary, set FTS_SKIP before returning. */ - skip = excluded_file_name (exclude, ent->fts_path); + skip = excluded_file_name (exclude, file); if (skip) fts_set (fts, ent, FTS_SKIP); -- 2.7.4