Git development
 help / color / mirror / Atom feed
* [RFC][PATCH 01/10] Sparse: fix "non-ANSI function declaration" warnings
@ 2007-06-08 22:09 Ramsay Jones
  0 siblings, 0 replies; only message in thread
From: Ramsay Jones @ 2007-06-08 22:09 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: GIT Mailing-list


Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
---
 config.c          |    2 +-
 merge-recursive.c |    2 +-
 sha1_file.c       |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/config.c b/config.c
index 7b655fd..5754ec2 100644
--- a/config.c
+++ b/config.c
@@ -512,7 +512,7 @@ static int store_aux(const char* key, const char* value)
 	return 0;
 }
 
-static int write_error()
+static int write_error(void)
 {
 	fprintf(stderr, "Failed to write new configuration file\n");
 
diff --git a/merge-recursive.c b/merge-recursive.c
index 8f72b2c..2042004 100644
--- a/merge-recursive.c
+++ b/merge-recursive.c
@@ -127,7 +127,7 @@ static void output(int v, const char *fmt, ...)
 	va_end(args);
 }
 
-static void flush_output()
+static void flush_output(void)
 {
 	struct output_buffer *b, *n;
 	for (b = output_list; b; b = n) {
diff --git a/sha1_file.c b/sha1_file.c
index be991ed..7b77468 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -412,7 +412,7 @@ static size_t peak_pack_mapped;
 static size_t pack_mapped;
 struct packed_git *packed_git;
 
-void pack_report()
+void pack_report(void)
 {
 	fprintf(stderr,
 		"pack_report: getpagesize()            = %10" SZ_FMT "\n"
-- 
1.5.2

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2007-06-08 22:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-08 22:09 [RFC][PATCH 01/10] Sparse: fix "non-ANSI function declaration" warnings Ramsay Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox