[fastfat_new]
authorAleksey Bragin <aleksey@reactos.org>
Sat, 24 Oct 2009 21:05:42 +0000 (21:05 +0000)
committerAleksey Bragin <aleksey@reactos.org>
Sat, 24 Oct 2009 21:05:42 +0000 (21:05 +0000)
- Fix FF_Free warning.

svn path=/trunk/; revision=43725

reactos/drivers/filesystems/fastfat_new/fullfat.c

index 2ebb114..652c567 100644 (file)
@@ -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