s/to override/To override/

Thanks to Greg Clayton for catching this

llvm-svn: 182339
This commit is contained in:
Enrico Granata 2013-05-21 00:22:30 +00:00
parent 9730339bdf
commit b936b86d0c
1 changed files with 1 additions and 1 deletions
lldb/source/Core

View File

@ -1277,7 +1277,7 @@ Module::LoadScriptingResourceInTarget (Target *target, Error& error, Stream* fee
if (shoud_load == false)
{
if (should_warn == true && feedback_stream)
feedback_stream->Printf("warning: the debug info scripting resource for '%s' was not loaded for security reasons. to override, set the \"target.load-script-from-symbol-file\" setting to true or manually run \"command script import %s\"\n",GetFileSpec().GetFileNameStrippingExtension().GetCString(),scripting_fspec.GetPath().c_str());
feedback_stream->Printf("warning: the debug info scripting resource for '%s' was not loaded for security reasons. To override, set the \"target.load-script-from-symbol-file\" setting to true or manually run \"command script import %s\"\n",GetFileSpec().GetFileNameStrippingExtension().GetCString(),scripting_fspec.GetPath().c_str());
return false;
}
StreamString scripting_stream;