[Lldb-commits] [lldb] 6feb35b - [lldb] Improve log message (NFC)

Dave Lee via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 27 18:32:10 PDT 2023


Author: Dave Lee
Date: 2023-06-27T18:32:05-07:00
New Revision: 6feb35bac59ed341b90d182f1fd91aed5f840f24

URL: https://github.com/llvm/llvm-project/commit/6feb35bac59ed341b90d182f1fd91aed5f840f24
DIFF: https://github.com/llvm/llvm-project/commit/6feb35bac59ed341b90d182f1fd91aed5f840f24.diff

LOG: [lldb] Improve log message (NFC)

Remove the unmatched closing paren )

Added: 
    

Modified: 
    lldb/source/Target/Platform.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Target/Platform.cpp b/lldb/source/Target/Platform.cpp
index 4b5d21bede121..15bc2091ab80a 100644
--- a/lldb/source/Target/Platform.cpp
+++ b/lldb/source/Target/Platform.cpp
@@ -1060,7 +1060,7 @@ lldb::ProcessSP Platform::DebugProcess(ProcessLaunchInfo &launch_info,
                                        Debugger &debugger, Target &target,
                                        Status &error) {
   Log *log = GetLog(LLDBLog::Platform);
-  LLDB_LOG(log, "target = {0})", &target);
+  LLDB_LOG(log, "target = {0}", &target);
 
   ProcessSP process_sp;
   // Make sure we stop at the entry point


        


More information about the lldb-commits mailing list