================ @@ -953,9 +953,9 @@ llvm::json::Value CreateThreadStopped(lldb::SBThread &thread, } else { body.try_emplace("reason", "breakpoint"); char desc_str[64]; - uint64_t bp_id = thread.GetStopReasonDataAtIndex(0); - uint64_t bp_loc_id = thread.GetStopReasonDataAtIndex(1); - snprintf(desc_str, sizeof(desc_str), "breakpoint %" PRIu64 ".%" PRIu64, + break_id_t bp_id = thread.GetStopReasonDataAtIndex(0); + break_id_t bp_loc_id = thread.GetStopReasonDataAtIndex(1); + snprintf(desc_str, sizeof(desc_str), "breakpoint %" PRIo32 ".%" PRIo32, ---------------- clayborg wrote:
This is indeed octal which isn't what we want. You need to use `PRIi32` https://github.com/llvm/llvm-project/pull/72292 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits