cabinet: void functions should not return a value.

oldstable
Andrew Talbot 2011-08-06 12:51:09 +01:00 committed by Alexandre Julliard
parent 2de37f0214
commit 25ea532443
1 changed files with 1 additions and 1 deletions

View File

@ -917,7 +917,7 @@ static void *zalloc( void *opaque, unsigned int items, unsigned int size )
static void zfree( void *opaque, void *ptr )
{
FCI_Int *fci = opaque;
return fci->free( ptr );
fci->free( ptr );
}
static cab_UWORD compress_MSZIP( FCI_Int *fci )