mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-14 01:33:29 +00:00
Fix printf argument types
This was SVN commit r10529.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user