Fix printf argument types

This was SVN commit r10529.
This commit is contained in:
Ykkrosh
2011-11-13 18:31:06 +00:00
parent 97d3f1cfc9
commit fbff0aa98d
15 changed files with 74 additions and 42 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ Status da_set_size(DynArray* da, size_t new_size)
{
ok = vm::Commit(uintptr_t(end), size_delta_pa);
if(!ok)
debug_printf(L"Commit failed (%p %d)\n", end, size_delta_pa);
debug_printf(L"Commit failed (%p %lld)\n", end, (long long)size_delta_pa);
}
// shrinking
else if(size_delta_pa < 0)