diff options
author | Jim Meyering <meyering@redhat.com> | 2008-05-29 18:01:05 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-05-29 18:01:05 +0200 |
commit | 8581bcc9e3610be735c393650605b56f019695af (patch) | |
tree | df1c53dd688afe7db12906db4448ce62d917a819 | |
parent | 00a309823501317f9061a28e98cc13177bc4a12a (diff) | |
download | coreutils-8581bcc9e3610be735c393650605b56f019695af.tar.xz |
du.c: tiny cleanup (no semantic change)
* src/du.c (process_file): Use "file", rather than
equivalent "ent->fts_path".
-rw-r--r-- | src/du.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |