win/test: Fix string format specifier

bnum_allocs returns a long (%ld), not an unsigned long long (%llu).
This commit is contained in:
jp9000
2015-02-09 01:19:46 -08:00
parent 4ba293a6d9
commit fb414e8988

View File

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