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:
Benjamin Kramer 2021-12-08 19:36:33 +01:00
parent 5d3b8956e8
commit 81f4874cbf
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}