Fixed compiler warning...
This commit is contained in:
parent
b615f0bc3e
commit
32d21cd398
1 changed files with 2 additions and 2 deletions
|
@ -132,7 +132,7 @@ START_TEST(indirectAlloc) {
|
|||
|
||||
|
||||
|
||||
printf("{page = %lld, slot = %d, size = %lld}\n", (int64_t)rid.page, rid.slot, (int64_t)rid.size);
|
||||
printf("{page = %ld, slot = %d, size = %ld}\n", (int64_t)rid.page, rid.slot, (int64_t)rid.size);
|
||||
|
||||
releasePage(p);
|
||||
|
||||
|
@ -156,7 +156,7 @@ START_TEST(indirectAlloc) {
|
|||
|
||||
|
||||
|
||||
printf("{page = %lld, slot = %d, size = %lld}\n", (int64_t)rid.page, rid.slot, (int64_t)rid.size);
|
||||
printf("{page = %ld, slot = %d, size = %ld}\n", (int64_t)rid.page, rid.slot, (int64_t)rid.size);
|
||||
|
||||
releasePage(p);
|
||||
|
||||
|
|
Loading…
Reference in a new issue