summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBValue.cpp
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2013-02-28 02:26:12 +0000
committerEnrico Granata <egranata@apple.com>2013-02-28 02:26:12 +0000
commit1ddbd8a68bcc96d867c37362d804a4d31f7bf956 (patch)
treea3c2fbfc6a0cc5e6b3073b07276ead488c9165b0 /lldb/source/API/SBValue.cpp
parent0a2df227fc99133641d53de0769028dd8e29497a (diff)
downloadbcm5719-llvm-1ddbd8a68bcc96d867c37362d804a4d31f7bf956.tar.gz
bcm5719-llvm-1ddbd8a68bcc96d867c37362d804a4d31f7bf956.zip
Fixing the log line for SBValue::MightHaveChildren() to report the correct function name
llvm-svn: 176232
Diffstat (limited to 'lldb/source/API/SBValue.cpp')
-rw-r--r--lldb/source/API/SBValue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBValue.cpp b/lldb/source/API/SBValue.cpp
index d3a34685b79..7dde95476fa 100644
--- a/lldb/source/API/SBValue.cpp
+++ b/lldb/source/API/SBValue.cpp
@@ -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;
}
OpenPOWER on IntegriCloud