diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2010-08-29 13:25:51 +0200 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2010-08-29 13:26:55 +0200 |
commit | 0a6b820cc4fc532cddcfc8e2d875ea3f6431aab5 (patch) | |
tree | 4e937d2f687f10f1f895d42be8d249b15477bb2f /manifest.c | |
parent | 41113e3087aabc68bf4379d5c101da351a5c7e67 (diff) | |
download | ccache-0a6b820cc4fc532cddcfc8e2d875ea3f6431aab5.tar.gz |
Use bool, true and false for boolean values
Diffstat (limited to 'manifest.c')
-rw-r--r-- | manifest.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -571,9 +571,9 @@ out: /* * Put the object name into a manifest file given a set of included files. - * Returns 1 on success, otherwise 0. + * Returns true on success, otherwise false. */ -int +bool manifest_put(const char *manifest_path, struct file_hash *object_hash, struct hashtable *included_files) { |