Fixed warnings in uncache and store_cache

This commit is contained in:
2023-03-03 03:46:20 -06:00
parent 6576876109
commit a2ab47b7aa

View File

@@ -171,10 +171,6 @@ static inline void store_cache(bitmap_heap_descriptor_t *heap, int index)
heap->cache[level] = index; heap->cache[level] = index;
} }
} }
else
{
return 0;
}
} }
/* /*
@@ -191,10 +187,6 @@ static inline void uncache(bitmap_heap_descriptor_t *heap, int index)
heap->cache[level] = 0; heap->cache[level] = 0;
} }
} }
else
{
return 0;
}
} }
/* /*