From 7294ae2a881262c33fd059d4ea4abaaf572e0297 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 30 Aug 2014 14:33:19 +0300 Subject: [PATCH] Fix a C6328 warning. Potential argument type mismatch. --- cli/cppcheckexecutor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cppcheckexecutor.cpp b/cli/cppcheckexecutor.cpp index 4ab7f3fdb..09c533ac8 100644 --- a/cli/cppcheckexecutor.cpp +++ b/cli/cppcheckexecutor.cpp @@ -529,7 +529,7 @@ static void PrintCallstack(FILE* f, PEXCEPTION_POINTERS ex) if (_tcscmp(undname, _T("main"))==0) beyond_main=0; fprintf(f, - "%lu. 0x%08LX in ", + "%lu. 0x%08I64X in ", frame, (ULONG64)stack.AddrPC.Offset); fputs((const char *)undname, f); fputs("\n", f);