diff options
author | Rene Scharfe <rene.scharfe@lsrfire.ath.cx> | 2006-11-18 13:07:06 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-11-18 11:40:00 -0800 |
commit | a6e8a7677055e092424db42c044774bc6dbd74f6 (patch) | |
tree | f891a5754045ea07e92897d2337f3bb2f50a6b79 /read-cache.c | |
parent | f847c07b9ac82ff3d0da0efb3bed75bc17489a17 (diff) | |
download | git-a6e8a7677055e092424db42c044774bc6dbd74f6.tar.gz git-a6e8a7677055e092424db42c044774bc6dbd74f6.tar.xz |
sparse fix: non-ANSI function declaration
The declaration of discard_cache() in cache.h already has its "void".
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'read-cache.c')
-rw-r--r-- | read-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/read-cache.c b/read-cache.c index 97c38670b..0f5fb5bc3 100644 --- a/read-cache.c +++ b/read-cache.c @@ -844,7 +844,7 @@ unmap: die("index file corrupt"); } -int discard_cache() +int discard_cache(void) { int ret; |