1
0
mirror of https://github.com/kanjitalk755/macemu.git synced 2025-04-06 15:39:41 +00:00

Fix remove_shm_range() to actually return something

This commit is contained in:
gbeauche 2006-07-19 21:23:41 +00:00
parent f39c252fbd
commit d1d7d5bd4c

@ -138,7 +138,7 @@ static bool remove_shm_range(shm_range_t *r)
static bool remove_shm_range(void *base, unsigned int size)
{
remove_shm_range(find_shm_range(base, size));
return remove_shm_range(find_shm_range(base, size));
}
#endif