diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-01-10 12:54:24 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-01-10 12:54:24 -0800 |
commit | aeace38fa079d56b46898385a926df5356146b1d (patch) | |
tree | b2476d813ed343449c63421a2286ff92c7cdb74a | |
parent | ca0b7b54ad00ff1d6d465cc1cf0c307293d721cc (diff) | |
download | syslinux.git-aeace38fa079d56b46898385a926df5356146b1d.tar.gz syslinux.git-aeace38fa079d56b46898385a926df5356146b1d.tar.xz syslinux.git-aeace38fa079d56b46898385a926df5356146b1d.zip |
memdisk: fix non-prototype function declaration
() is not a prototype, use (void)
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r-- | memdisk/inflate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/memdisk/inflate.c b/memdisk/inflate.c index 30df244d..e7825f0c 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; |