Skip to content

Commit 148f1d9

Browse files
krasimirggJDevlieghere
authored andcommitted
[lldb] Fix -Wformat warning after 5a27b99
No functional changes intended. (cherry picked from commit ad709bc)
1 parent 69a2706 commit 148f1d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Core/Debugger.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1858,7 +1858,7 @@ void Debugger::HandleProgressEvent(const lldb::EventSP &event_sp) {
18581858
// Print the progress message.
18591859
std::string message = data->GetMessage();
18601860
if (data->GetTotal() != UINT64_MAX) {
1861-
output.Printf("[%llu/%llu] %s...", data->GetCompleted(), data->GetTotal(),
1861+
output.Printf("[%" PRIu64 "/%" PRIu64 "] %s...", data->GetCompleted(), data->GetTotal(),
18621862
message.c_str());
18631863
} else {
18641864
output.Printf("%s...", message.c_str());

0 commit comments

Comments
 (0)