Skip to content

Commit cc05418

Browse files
committed
[lldb][AArch64] Fix unpack tags test case
Use %zu to print size_t vars.
1 parent cd256c8 commit cc05418

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lldb/source/Plugins/Process/Utility/MemoryTagManagerAArch64MTE.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ MemoryTagManagerAArch64MTE::UnpackTagsData(const std::vector<uint8_t> &tags,
7474
return llvm::createStringError(
7575
llvm::inconvertibleErrorCode(),
7676
"Packed tag data size does not match expected number of tags. "
77-
"Expected %" PRIu64 " tag(s) for %" PRIu64 " granules, got %" PRIu64
78-
" tag(s).",
77+
"Expected %zu tag(s) for %zu granules, got %zu tag(s).",
7978
granules, granules, num_tags);
8079
}
8180

0 commit comments

Comments
 (0)