summaryrefslogtreecommitdiff
path: root/manifest.c
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2010-08-29 13:25:51 +0200
committerJoel Rosdahl <joel@rosdahl.net>2010-08-29 13:26:55 +0200
commit0a6b820cc4fc532cddcfc8e2d875ea3f6431aab5 (patch)
tree4e937d2f687f10f1f895d42be8d249b15477bb2f /manifest.c
parent41113e3087aabc68bf4379d5c101da351a5c7e67 (diff)
downloadccache-0a6b820cc4fc532cddcfc8e2d875ea3f6431aab5.tar.gz
Use bool, true and false for boolean values
Diffstat (limited to 'manifest.c')
-rw-r--r--manifest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifest.c b/manifest.c
index b016fecd..bb809ba5 100644
--- a/manifest.c
+++ b/manifest.c
@@ -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)
{