Skip to content

Commit c79c553

Browse files
committed
nit
1 parent 8b5b1f9 commit c79c553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Core/DumpDataExtractor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ static offset_t FormatOCamlValue(const DataExtractor &DE, Stream *s,
725725
if (int_size == 32)
726726
s->Printf("%ld", (long)i);
727727
else
728-
s->Printf("%lld", (int64_t)i);
728+
s->Printf("%" PRIi64, (int64_t)i);
729729
s->Printf("%s", suffix.c_str());
730730
print_default = false;
731731
}

0 commit comments

Comments
 (0)