diff options
author | Florian Mayer <fmayer@google.com> | 2025-05-05 11:33:15 -0700 |
---|---|---|
committer | Florian Mayer <fmayer@google.com> | 2025-05-05 11:33:15 -0700 |
commit | 9bda5720edd56fb20845e6ad5ba6139b7967958a (patch) | |
tree | 5b0632e86ba700f817ef586a454a67a469d389b4 | |
parent | 13926e149081ca2771bdea7c08c07d92d87f7818 (diff) | |
download | llvm-users/fmayer/spr/nfc-fix-format-specifier.zip llvm-users/fmayer/spr/nfc-fix-format-specifier.tar.gz llvm-users/fmayer/spr/nfc-fix-format-specifier.tar.bz2 |
[𝘀𝗽𝗿] initial versionusers/fmayer/spr/nfc-fix-format-specifier
Created using spr 1.3.4
-rw-r--r-- | compiler-rt/lib/hwasan/hwasan_report.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/hwasan/hwasan_report.cpp b/compiler-rt/lib/hwasan/hwasan_report.cpp index bc66e6e..5bdc4f6 100644 --- a/compiler-rt/lib/hwasan/hwasan_report.cpp +++ b/compiler-rt/lib/hwasan/hwasan_report.cpp @@ -761,7 +761,7 @@ void BaseReport::PrintHeapOrGlobalCandidate() const { if (sym->SymbolizeData(candidate.untagged_addr, &info) && info.start) { Printf( "%p is located %zd bytes %s a %zd-byte global variable " - "%s [%p,%p) in %s\n", + "%s [%zd,%zd) in %s\n", untagged_addr, candidate.after ? untagged_addr - (info.start + info.size) : info.start - untagged_addr, |