Decompressors: add missing INIT (i.e. __init)

Signed-off-by: Lasse Collin <lasse.collin@tukaani.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Alain Knaff <alain@knaff.lu>
Cc: Albin Tonnerre <albin.tonnerre@free-electrons.com>
Cc: Phillip Lougher <phillip@lougher.demon.co.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Lasse Collin 2011-01-12 17:01:13 -08:00 committed by Linus Torvalds
parent 8d0a1decb4
commit 6b01ed64c1
2 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@
#define GZIP_IOBUF_SIZE (16*1024)
static int nofill(void *buffer, unsigned int len)
static int INIT nofill(void *buffer, unsigned int len)
{
return -1;
}