forked from OSchip/llvm-project
Use zu rather than llu format specifier for size_t (-Wformat warning fix).
This commit is contained in:
parent
ebfbdebe96
commit
c140322819
|
@ -196,7 +196,7 @@ static bool ReadCode(const std::string &path, std::string &code,
|
||||||
const size_t max_size = code.max_size();
|
const size_t max_size = code.max_size();
|
||||||
if (file_size > max_size) {
|
if (file_size > max_size) {
|
||||||
error_sp->Printf("file at path '%s' too large: "
|
error_sp->Printf("file at path '%s' too large: "
|
||||||
"file_size = %llu, max_size = %llu\n",
|
"file_size = %zu, max_size = %zu\n",
|
||||||
path.c_str(), file_size, max_size);
|
path.c_str(), file_size, max_size);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue