diff options
Diffstat (limited to 'archival/libunarchive/unzip.c')
-rw-r--r-- | archival/libunarchive/unzip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archival/libunarchive/unzip.c b/archival/libunarchive/unzip.c index ee746216d..bb32891be 100644 --- a/archival/libunarchive/unzip.c +++ b/archival/libunarchive/unzip.c | |||
@@ -115,13 +115,13 @@ static const unsigned short mask_bits[] = { | |||
115 | * Signal and error handler. | 115 | * Signal and error handler. |
116 | */ | 116 | */ |
117 | 117 | ||
118 | static void abort_gzip() | 118 | static void abort_gzip(void) |
119 | { | 119 | { |
120 | error_msg("gzip aborted\n"); | 120 | error_msg("gzip aborted\n"); |
121 | exit(ERROR); | 121 | exit(ERROR); |
122 | } | 122 | } |
123 | 123 | ||
124 | static void make_crc_table() | 124 | static void make_crc_table(void) |
125 | { | 125 | { |
126 | unsigned long table_entry; /* crc shift register */ | 126 | unsigned long table_entry; /* crc shift register */ |
127 | unsigned long poly = 0; /* polynomial exclusive-or pattern */ | 127 | unsigned long poly = 0; /* polynomial exclusive-or pattern */ |
@@ -853,7 +853,7 @@ static int inflate_block(int *e) | |||
853 | * | 853 | * |
854 | * GLOBAL VARIABLES: outcnt, bk, bb, hufts, inptr | 854 | * GLOBAL VARIABLES: outcnt, bk, bb, hufts, inptr |
855 | */ | 855 | */ |
856 | static int inflate() | 856 | static int inflate(void) |
857 | { | 857 | { |
858 | int e; /* last block flag */ | 858 | int e; /* last block flag */ |
859 | int r; /* result code */ | 859 | int r; /* result code */ |