mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-08-30 17:58:37 +08:00
win/test: Fix string format specifier
bnum_allocs returns a long (%ld), not an unsigned long long (%llu).
This commit is contained in:
+1
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user