From: Jim Meyering Date: Sun, 30 Sep 2001 06:26:46 +0000 (+0000) Subject: (excluded_filename): 0 -> false, since it's a boolean context. X-Git-Tag: TEXTUTILS-2_0_16~8 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=1c670cbcd2c4495bdc9c620bc2424f7fa59782b9;p=thirdparty%2Fcoreutils.git (excluded_filename): 0 -> false, since it's a boolean context. --- diff --git a/lib/exclude.c b/lib/exclude.c index e44145c8a8..e3f2225676 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;