From: Paul Eggert Date: Fri, 30 Jul 2004 07:55:33 +0000 (+0000) Subject: (remember_created): Use bool when appropriate. X-Git-Tag: v5.3.0~1009 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c9f7316d24551598f1b9c4f0a5bda3f3ecfcd86;p=thirdparty%2Fcoreutils.git (remember_created): Use bool when appropriate. --- diff --git a/src/cp-hash.h b/src/cp-hash.h index 7d40163f17..ba6e24c83b 100644 --- a/src/cp-hash.h +++ b/src/cp-hash.h @@ -2,5 +2,5 @@ void hash_init (void); void forget_all (void); void forget_created (ino_t ino, dev_t dev); char *remember_copied (const char *node, ino_t ino, dev_t dev); -int remember_created (const char *path); +bool remember_created (const char *path); char *src_to_dest_lookup (ino_t ino, dev_t dev);