git: 732b9d1535db - stable/12 - Reapply r311164:
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 22 Dec 2021 10:05:28 UTC
The branch stable/12 has been updated by dim: URL: https://cgit.FreeBSD.org/src/commit/?id=732b9d1535db272ad9d1f6f963da0eecf53ff0ce commit 732b9d1535db272ad9d1f6f963da0eecf53ff0ce Author: Dimitry Andric <dim@FreeBSD.org> AuthorDate: 2020-08-02 18:16:04 +0000 Commit: Dimitry Andric <dim@FreeBSD.org> CommitDate: 2021-12-22 09:58:12 +0000 Reapply r311164: Fix printf format warning on i386. (cherry picked from commit f82466688624c6ff2f24b6157944ab18d0b9d456) --- .../llvm-project/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp b/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp index 48dbddb86cca..79cb0e3bb8cd 100644 --- a/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp +++ b/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp @@ -278,7 +278,7 @@ void FreeBSDThread::DidStop() { void FreeBSDThread::WillResume(lldb::StateType resume_state) { Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD)); - LLDB_LOGF(log, "tid %lu resume_state = %s", GetID(), + LLDB_LOGF(log, "tid %" PRIu64 " resume_state = %s", GetID(), lldb_private::StateAsCString(resume_state)); ProcessSP process_sp(GetProcess()); ProcessFreeBSD *process = static_cast<ProcessFreeBSD *>(process_sp.get());