corrected slottedFrespace()'s declaration (it was returning an int, but needed to return a size_t
This commit is contained in:
parent
d9f1df0476
commit
10e7434d32
1 changed files with 1 additions and 3 deletions
|
@ -175,9 +175,7 @@ recordid slottedRawRalloc(Page * page, int size);
|
|||
* @return an exact measurment of the freespace, or, in the case of
|
||||
* fragmentation, an underestimate.
|
||||
*/
|
||||
int slottedFreespace(Page * p);
|
||||
|
||||
|
||||
size_t slottedFreespace(Page * p);
|
||||
|
||||
/**
|
||||
* Check to see if a slot is a normal slot, or something else, such
|
||||
|
|
Loading…
Reference in a new issue