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: cvs-readonly~5638 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=fcb712da4a086f881e3bd60d4442962d0d6255c0;p=gnulib.git (excluded_filename): 0 -> false, since it's a boolean context. --- 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;