Skip to content

Commit 7294ae2

Browse files
committed
Fix a C6328 warning.
Potential argument type mismatch.
1 parent 97005d7 commit 7294ae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/cppcheckexecutor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ static void PrintCallstack(FILE* f, PEXCEPTION_POINTERS ex)
529529
if (_tcscmp(undname, _T("main"))==0)
530530
beyond_main=0;
531531
fprintf(f,
532-
"%lu. 0x%08LX in ",
532+
"%lu. 0x%08I64X in ",
533533
frame, (ULONG64)stack.AddrPC.Offset);
534534
fputs((const char *)undname, f);
535535
fputs("\n", f);

0 commit comments

Comments
 (0)