[Lldb-commits] [lldb] r236429 - Fix a typo in the warning.
Jim Ingham
jingham at apple.com
Mon May 4 10:33:33 PDT 2015
Author: jingham
Date: Mon May 4 12:33:33 2015
New Revision: 236429
URL: http://llvm.org/viewvc/llvm-project?rev=236429&view=rev
Log:
Fix a typo in the warning.
<rdar://problem/20799707>
Modified:
lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
Modified: lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp?rev=236429&r1=236428&r2=236429&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp (original)
+++ lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp Mon May 4 12:33:33 2015
@@ -1594,7 +1594,7 @@ AppleObjCRuntimeV2::WarnIfNoClassesCache
if (debugger.GetAsyncOutputStream())
{
- debugger.GetAsyncOutputStream()->PutCString("warning: could not load any Objective-C class information from the dyld shared cache. This will signficantly reduce the quality of type information available.\n");
+ debugger.GetAsyncOutputStream()->PutCString("warning: could not load any Objective-C class information from the dyld shared cache. This will significantly reduce the quality of type information available.\n");
m_noclasses_warning_emitted = true;
}
}
More information about the lldb-commits
mailing list