Skip to content

Commit

Permalink
[lldb] Fix format string in Communication::Write
Browse files Browse the repository at this point in the history
Reviewed By: teemperor

Differential Revision: https://reviews.llvm.org/D109508
  • Loading branch information
rjmansfield authored and Teemperor committed Sep 9, 2021
1 parent 17c2948 commit 4f1c90a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lldb/source/Core/Communication.cpp
Expand Up @@ -176,8 +176,8 @@ size_t Communication::Write(const void *src, size_t src_len,

std::lock_guard<std::mutex> guard(m_write_mutex);
LLDB_LOG(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_COMMUNICATION),
"{0} Communication::Write (src = {1}, src_len = %" PRIu64
") connection = {2}",
"{0} Communication::Write (src = {1}, src_len = {2}"
") connection = {3}",
this, src, (uint64_t)src_len, connection_sp.get());

if (connection_sp)
Expand Down

0 comments on commit 4f1c90a

Please sign in to comment.