forked from OSchip/llvm-project
Silence format string warning harder.
This can be unsigned long or unsigned long long depending on where it's compiled. Use the ugly portable way. PlatformWindows.cpp:397:63: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long')
This commit is contained in:
parent
5d3b8956e8
commit
81f4874cbf
|
@ -394,7 +394,7 @@ uint32_t PlatformWindows::DoLoadImage(Process *process,
|
|||
return LLDB_INVALID_IMAGE_TOKEN;
|
||||
}
|
||||
|
||||
error.SetErrorStringWithFormat("LoadLibrary Error: %llu", error_code);
|
||||
error.SetErrorStringWithFormat("LoadLibrary Error: %" PRIu64, error_code);
|
||||
return LLDB_INVALID_IMAGE_TOKEN;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue