From ec26b4d6b004b6529c79e995a543945076c683aa Mon Sep 17 00:00:00 2001 From: Rene Scharfe Date: Sun, 2 Apr 2006 13:13:10 +0200 Subject: [PATCH] Fix sparse warnings about non-ANSI function prototypes Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano --- git.c | 2 +- http-push.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/git.c b/git.c index 72039c69c..b4a1ef2bc 100644 --- a/git.c +++ b/git.c @@ -172,7 +172,7 @@ static void list_commands(const char *exec_path, const char *pattern) putchar('\n'); } -static void list_common_cmds_help() +static void list_common_cmds_help(void) { int i, longest = 0; diff --git a/http-push.c b/http-push.c index 21c5289cd..ba7d9de23 100644 --- a/http-push.c +++ b/http-push.c @@ -622,7 +622,7 @@ static int refresh_lock(struct remote_lock *lock) return rc; } -static void check_locks() +static void check_locks(void) { struct remote_lock *lock = remote->locks; time_t current_time = time(NULL); -- 2.11.0