mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
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:
committed by
Blue Swirl
parent
d0ade34117
commit
74203e0c7a
@@ -178,7 +178,7 @@ malloc( int size )
|
|||||||
void
|
void
|
||||||
free( void *ptr )
|
free( void *ptr )
|
||||||
{
|
{
|
||||||
return ofmem_free(ptr);
|
ofmem_free(ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void *
|
void *
|
||||||
|
|||||||
Reference in New Issue
Block a user