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

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Scharfe <rene.scharfe@lsrfire.ath.cx>2006-04-02 15:13:10 +0400
committerJunio C Hamano <junkio@cox.net>2006-04-02 23:58:47 +0400
commitec26b4d6b004b6529c79e995a543945076c683aa (patch)
tree4e1defa927513f6caf3ae7fac9a0906c3e338d2c
parent5142db69123b9dd5605ee3e290409787675dd748 (diff)
Fix sparse warnings about non-ANSI function prototypes
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--git.c2
-rw-r--r--http-push.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/git.c b/git.c
index 72039c69cb..b4a1ef2bc8 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 21c5289cde..ba7d9de234 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);