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

View File

@@ -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