summaryrefslogtreecommitdiff
path: root/lib/exclude.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-09-30 06:26:46 +0000
committerJim Meyering <jim@meyering.net>2001-09-30 06:26:46 +0000
commit1c670cbcd2c4495bdc9c620bc2424f7fa59782b9 (patch)
tree48d3e734055677bb5b72db3782a4ee4bd4d647c6 /lib/exclude.c
parent82f70b1ed9d51a1b08af6304aa8a836322f8d266 (diff)
downloadcoreutils-1c670cbcd2c4495bdc9c620bc2424f7fa59782b9.tar.xz
(excluded_filename): 0 -> false, since it's a boolean context.
Diffstat (limited to 'lib/exclude.c')
-rw-r--r--lib/exclude.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exclude.c b/lib/exclude.c
index e44145c8a..e3f222567 100644
--- a/lib/exclude.c
+++ b/lib/exclude.c
@@ -147,7 +147,7 @@ excluded_filename (struct exclude const *ex, char const *f)
/* If no options are given, the default is to include. */
if (exclude_count == 0)
- return 0;
+ return false;
else
{
struct patopts const *exclude = ex->exclude;