diff options
author | René Scharfe <l.s.r@web.de> | 2014-11-10 22:17:00 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-11-10 14:43:19 -0800 |
commit | 6066a7eac4b2bcdb86971783b583e4e408b32e81 (patch) | |
tree | 2a3c164fd1d19504cd6f42ee145505229e943710 /run-command.c | |
parent | 80b581dd099c4307e5a5775fe7b0ffbdb50ae937 (diff) | |
download | git-6066a7eac4b2bcdb86971783b583e4e408b32e81.tar.gz |
run-command: use void to declare that functions take no parameters
Explicitly declare that git_atexit_dispatch() and git_atexit_clear()
take no parameters instead of leaving their parameter list empty and
thus unspecified.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'run-command.c')
-rw-r--r-- | run-command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run-command.c b/run-command.c index 79a0a763ec..a47699966c 100644 --- a/run-command.c +++ b/run-command.c @@ -636,7 +636,7 @@ static struct { static int git_atexit_installed; -static void git_atexit_dispatch() +static void git_atexit_dispatch(void) { size_t i; @@ -644,7 +644,7 @@ static void git_atexit_dispatch() git_atexit_hdlrs.handlers[i-1](); } -static void git_atexit_clear() +static void git_atexit_clear(void) { free(git_atexit_hdlrs.handlers); memset(&git_atexit_hdlrs, 0, sizeof(git_atexit_hdlrs)); |