From aeace38fa079d56b46898385a926df5356146b1d Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sun, 10 Jan 2010 12:54:24 -0800 Subject: [PATCH] memdisk: fix non-prototype function declaration () is not a prototype, use (void) Signed-off-by: H. Peter Anvin --- memdisk/inflate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memdisk/inflate.c b/memdisk/inflate.c index 30df244..e7825f0 100644 --- a/memdisk/inflate.c +++ b/memdisk/inflate.c @@ -998,7 +998,7 @@ static void makecrc(void) /* * Do the uncompression! */ -int gunzip() +int gunzip(void) { int res; -- 2.7.4