[Lldb-commits] [PATCH] D77287: Windows: support `DoLoadImage`
Nico Weber via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Sat Dec 4 19:28:45 PST 2021
thakis added inline comments.
================
Comment at: lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp:397
+
+ error.SetErrorStringWithFormat("LoadLibrary Error: %lu", error_code);
+ return LLDB_INVALID_IMAGE_TOKEN;
----------------
```
../../lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp:397:62: warning: format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Wformat]
error.SetErrorStringWithFormat("LoadLibrary Error: %lu", error_code);
~~~ ^~~~~~~~~~
%llu
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77287/new/
https://reviews.llvm.org/D77287
More information about the lldb-commits
mailing list