Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[PATCH] zlib inflate: fix function definitions

Fix function definitions to be ANSI-compliant:
lib/zlib_inflate/inffast.c:68:1: warning: non-ANSI definition of function 'inflate_fast'
lib/zlib_inflate/inftrees.c:33:1: warning: non-ANSI definition of function 'zlib_inflate_table'

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Randy Dunlap and committed by
Linus Torvalds
b762450e 7f32a25f

+5 -10
+3 -3
lib/zlib_inflate/inffast.c
··· 63 63 bytes, which is the maximum length that can be coded. inflate_fast() 64 64 requires strm->avail_out >= 258 for each loop to avoid checking for 65 65 output space. 66 + 67 + - @start: inflate()'s starting value for strm->avail_out 66 68 */ 67 - void inflate_fast(strm, start) 68 - z_streamp strm; 69 - unsigned start; /* inflate()'s starting value for strm->avail_out */ 69 + void inflate_fast(z_streamp strm, unsigned start) 70 70 { 71 71 struct inflate_state *state; 72 72 unsigned char *in; /* local strm->next_in */
+2 -7
lib/zlib_inflate/inftrees.c
··· 20 20 table index bits. It will differ if the request is greater than the 21 21 longest code or if it is less than the shortest code. 22 22 */ 23 - int zlib_inflate_table(type, lens, codes, table, bits, work) 24 - codetype type; 25 - unsigned short *lens; 26 - unsigned codes; 27 - code **table; 28 - unsigned *bits; 29 - unsigned short *work; 23 + int zlib_inflate_table(codetype type, unsigned short *lens, unsigned codes, 24 + code **table, unsigned *bits, unsigned short *work) 30 25 { 31 26 unsigned len; /* a code's length in bits */ 32 27 unsigned sym; /* index of code symbols */