ppc: Remove bogus return

ofmem_free() has no return value and neither does free().

Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>

git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@900 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Andreas Färber
2010-10-16 17:35:51 +00:00
committed by Blue Swirl
parent d0ade34117
commit 74203e0c7a

View File

@@ -178,7 +178,7 @@ malloc( int size )
void
free( void *ptr )
{
return ofmem_free(ptr);
ofmem_free(ptr);
}
void *