[Lldb-commits] [lldb] r176232 - Fixing the log line for SBValue::MightHaveChildren() to report the correct function name

Enrico Granata egranata at apple.com
Wed Feb 27 18:26:12 PST 2013


Author: enrico
Date: Wed Feb 27 20:26:12 2013
New Revision: 176232

URL: http://llvm.org/viewvc/llvm-project?rev=176232&view=rev
Log:
Fixing the log line for SBValue::MightHaveChildren() to report the correct function name

Modified:
    lldb/trunk/source/API/SBValue.cpp

Modified: lldb/trunk/source/API/SBValue.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/SBValue.cpp?rev=176232&r1=176231&r2=176232&view=diff
==============================================================================
--- lldb/trunk/source/API/SBValue.cpp (original)
+++ lldb/trunk/source/API/SBValue.cpp Wed Feb 27 20:26:12 2013
@@ -1365,7 +1365,7 @@ SBValue::MightHaveChildren ()
         has_children = value_sp->MightHaveChildren();
 
     if (log)
-        log->Printf ("SBValue(%p)::HasChildren() => %i", value_sp.get(), has_children);
+        log->Printf ("SBValue(%p)::MightHaveChildren() => %i", value_sp.get(), has_children);
     return has_children;
 }
 





More information about the lldb-commits mailing list