[Lldb-commits] [PATCH] D87640: Add '<' meta command to read in code from external file
Shafik Yaghmour via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 16 15:58:59 PDT 2020
shafik added inline comments.
================
Comment at: lldb/source/Expression/REPL.cpp:199
+ error_sp->Printf("file at path '%s' too large: "
+ "file_size = %llu, max_size = %llu\n",
+ path.c_str(), file_size, max_size);
----------------
`%llu` is not the correct specifier for `size_t` it is `%zu`
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D87640/new/
https://reviews.llvm.org/D87640
More information about the lldb-commits
mailing list