From: Jim Meyering Date: Wed, 9 Jun 2004 09:06:34 +0000 (+0000) Subject: (mode_changed): Return false, not 0, now that the function returns `bool'. X-Git-Tag: v5.3.0~1361 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7c6999b6f83522d31aeabc6eaed9f923824723d1;p=thirdparty%2Fcoreutils.git (mode_changed): Return false, not 0, now that the function returns `bool'. --- diff --git a/src/chmod.c b/src/chmod.c index d9191a30d1..24450647a6 100644 --- a/src/chmod.c +++ b/src/chmod.c @@ -118,7 +118,7 @@ mode_changed (char const *file, mode_t old_mode, mode_t new_mode) { if (!force_silent) error (0, errno, _("getting new attributes of %s"), quote (file)); - return 0; + return false; } new_mode = new_stats.st_mode;