diff options
Diffstat (limited to 'lldb/source/Target/StopInfo.cpp')
-rw-r--r-- | lldb/source/Target/StopInfo.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lldb/source/Target/StopInfo.cpp b/lldb/source/Target/StopInfo.cpp index 9d9bfd21b89..bae1e4af990 100644 --- a/lldb/source/Target/StopInfo.cpp +++ b/lldb/source/Target/StopInfo.cpp @@ -165,7 +165,7 @@ public: LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS)); if (log) - log->Printf ("Process::%s could not find breakpoint site id: %lld...", __FUNCTION__, m_value); + log->Printf ("Process::%s could not find breakpoint site id: %" PRId64 "...", __FUNCTION__, m_value); m_should_stop = true; } @@ -219,9 +219,9 @@ public: strm.Printf ("breakpoint %d which has been deleted.", m_break_id); } else if (m_address == LLDB_INVALID_ADDRESS) - strm.Printf("breakpoint site %lli which has been deleted - unknown address", m_value); + strm.Printf("breakpoint site %" PRIi64 " which has been deleted - unknown address", m_value); else - strm.Printf("breakpoint site %lli which has been deleted - was at 0x%llx", m_value, m_address); + strm.Printf("breakpoint site %" PRIi64 " which has been deleted - was at 0x%" PRIx64, m_value, m_address); m_description.swap (strm.GetString()); } @@ -397,7 +397,7 @@ protected: LogSP log_process(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS)); if (log_process) - log_process->Printf ("Process::%s could not find breakpoint site id: %lld...", __FUNCTION__, m_value); + log_process->Printf ("Process::%s could not find breakpoint site id: %" PRId64 "...", __FUNCTION__, m_value); } if (log) log->Printf ("Process::%s returning from action with m_should_stop: %d.", __FUNCTION__, m_should_stop); @@ -475,7 +475,7 @@ public: if (m_description.empty()) { StreamString strm; - strm.Printf("watchpoint %lli", m_value); + strm.Printf("watchpoint %" PRIi64, m_value); m_description.swap (strm.GetString()); } return m_description.c_str(); @@ -509,7 +509,7 @@ protected: LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS)); if (log) - log->Printf ("Process::%s could not find watchpoint location id: %lld...", + log->Printf ("Process::%s could not find watchpoint location id: %" PRId64 "...", __FUNCTION__, GetValue()); m_should_stop = true; @@ -666,7 +666,7 @@ protected: LogSP log_process(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS)); if (log_process) - log_process->Printf ("Process::%s could not find watchpoint id: %lld...", __FUNCTION__, m_value); + log_process->Printf ("Process::%s could not find watchpoint id: %" PRId64 "...", __FUNCTION__, m_value); } if (log) log->Printf ("Process::%s returning from action with m_should_stop: %d.", __FUNCTION__, m_should_stop); @@ -737,7 +737,7 @@ public: if (signal_name) strm.Printf("signal %s", signal_name); else - strm.Printf("signal %lli", m_value); + strm.Printf("signal %" PRIi64, m_value); m_description.swap (strm.GetString()); } return m_description.c_str(); |