Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <arrbee@arrbee.com>2012-03-17 02:56:01 +0400
committerRussell Belfer <arrbee@arrbee.com>2012-03-17 02:56:01 +0400
commit0d0fa7c3681e4ef3d0452666a9bc97d4b08391c9 (patch)
tree5e03e03bf9dc2f6125f4fb450cd3239d882b824f /src/attr.h
parent4cfe2ab60b1e26554b2bf753b06f538cb3475bd0 (diff)
Convert attr, ignore, mwindow, status to new errors
Also cleaned up some previously converted code that still had little things to polish.
Diffstat (limited to 'src/attr.h')
-rw-r--r--src/attr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/attr.h b/src/attr.h
index 5dbbb2366..eccda0ed7 100644
--- a/src/attr.h
+++ b/src/attr.h
@@ -34,7 +34,7 @@ extern int git_attr_cache__push_file(
const char *filename,
int (*loader)(git_repository *, const char *, git_attr_file *));
-/* returns GIT_SUCCESS if path is in cache */
-extern int git_attr_cache__is_cached(git_repository *repo, const char *path);
+/* returns true if path is in cache */
+extern bool git_attr_cache__is_cached(git_repository *repo, const char *path);
#endif