summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-03-11 22:36:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-03-11 23:02:13 (GMT)
commit4b0d1eebe95b8ed187ff06ae46d69d517c2b759f (patch)
tree536967c182e91467d968b3076c1f70c1e1fd222b /setup.c
parentab5d01a29eb7380ceab070f0807c2939849c44bc (diff)
downloadgit-4b0d1eebe95b8ed187ff06ae46d69d517c2b759f.zip
git-4b0d1eebe95b8ed187ff06ae46d69d517c2b759f.tar.gz
git-4b0d1eebe95b8ed187ff06ae46d69d517c2b759f.tar.bz2
setup: document check_repository_format()
This function's interface is rather enigmatic, so let's document it further. While we're here, let's also drop the return value. It will always either be "0" or the function will die (consequently, neither of its two callers bothered to check the return). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.c b/setup.c
index de1a2a7..b2f2e69 100644
--- a/setup.c
+++ b/setup.c
@@ -982,9 +982,9 @@ int check_repository_format_version(const char *var, const char *value, void *cb
return 0;
}
-int check_repository_format(void)
+void check_repository_format(void)
{
- return check_repository_format_gently(get_git_dir(), NULL);
+ check_repository_format_gently(get_git_dir(), NULL);
}
/*