From 2065926419c1427c9e91e26426c9eac4361cc29c Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Sat, 1 Oct 2016 23:56:42 -0700 Subject: [PATCH] Warning fix --- Texdiag/texdiag.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Texdiag/texdiag.cpp b/Texdiag/texdiag.cpp index 17adc72..2c679d0 100644 --- a/Texdiag/texdiag.cpp +++ b/Texdiag/texdiag.cpp @@ -3460,7 +3460,7 @@ int __cdecl wmain(_In_ int argc, _In_z_count_(argc) wchar_t* argv[]) auto sizeInKb = static_cast(image->GetPixelsSize() / 1024); - wprintf(L" pixel size = %Iu (KB)\n\n", sizeInKb); + wprintf(L" pixel size = %u (KB)\n\n", sizeInKb); } else if (dwCommand == CMD_DUMPBC) {