From 0f288316c07258c15edb5be93956e5bae83204d2 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sat, 24 Oct 2009 21:05:42 +0000 Subject: [PATCH] [fastfat_new] - Fix FF_Free warning. svn path=/trunk/; revision=43725 --- reactos/drivers/filesystems/fastfat_new/fullfat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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