From: Aleksey Bragin Date: Sat, 24 Oct 2009 21:05:42 +0000 (+0000) Subject: [fastfat_new] X-Git-Tag: ReactOS-0.3.11~314 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=0f288316c07258c15edb5be93956e5bae83204d2 [fastfat_new] - Fix FF_Free warning. svn path=/trunk/; revision=43725 --- diff --git a/reactos/drivers/filesystems/fastfat_new/fullfat.c b/reactos/drivers/filesystems/fastfat_new/fullfat.c index 2ebb114f93e..652c56741d6 100644 --- a/reactos/drivers/filesystems/fastfat_new/fullfat.c +++ b/reactos/drivers/filesystems/fastfat_new/fullfat.c @@ -26,7 +26,7 @@ FF_Malloc(FF_T_UINT32 allocSize) VOID FF_Free(VOID *pBuffer) { - return ExFreePoolWithTag(pBuffer, TAG_FULLFAT); + ExFreePoolWithTag(pBuffer, TAG_FULLFAT); } FF_T_SINT32