From: Paul Eggert Date: Fri, 30 Jul 2004 07:55:59 +0000 (+0000) Subject: (remember_created): Use bool when appropriate. X-Git-Tag: v5.3.0~1008 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89c5dddb8ff8bdb00c882ff0d28d3ddf6b3063e9;p=thirdparty%2Fcoreutils.git (remember_created): Use bool when appropriate. --- diff --git a/src/cp-hash.c b/src/cp-hash.c index c6c447bc52..b498f96bcb 100644 --- a/src/cp-hash.c +++ b/src/cp-hash.c @@ -99,9 +99,9 @@ forget_created (ino_t ino, dev_t dev) } /* Add PATH to the list of files that we have created. - Return 1 if we can't stat PATH, otherwise 0. */ + Return true if successful. */ -extern int +bool remember_created (const char *path) { struct stat sb; @@ -109,11 +109,11 @@ remember_created (const char *path) if (stat (path, &sb) < 0) { error (0, errno, "%s", quote (path)); - return 1; + return false; } remember_copied (path, sb.st_ino, sb.st_dev); - return 0; + return true; } /* If INO/DEV correspond to an already-copied source file, return the