From fcb712da4a086f881e3bd60d4442962d0d6255c0 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 30 Sep 2001 06:26:46 +0000 Subject: [PATCH] (excluded_filename): 0 -> false, since it's a boolean context. --- lib/exclude.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2