changed allocation counter to uint64_t

also avoids format string confusion for bnum_allocs
This commit is contained in:
Palana
2013-12-07 17:39:43 +01:00
parent 968f9c03bd
commit e6017ec1ba
5 changed files with 6 additions and 6 deletions

View File

@@ -189,7 +189,7 @@ int WINAPI WinMain(HINSTANCE instance, HINSTANCE prevInstance, LPSTR cmdLine,
obs_shutdown();
blog(LOG_INFO, "Number of memory leaks: %u", bnum_allocs());
blog(LOG_INFO, "Number of memory leaks: %llu", bnum_allocs());
DestroyWindow(hwnd);
return 0;