Commit 25ea5324 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

cabinet: void functions should not return a value.

parent 2de37f02
......@@ -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 )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment