[Lldb-commits] [lldb] r182434 - Adding a newline for better overall readability

Enrico Granata egranata at apple.com
Tue May 21 15:34:17 PDT 2013


Author: enrico
Date: Tue May 21 17:34:17 2013
New Revision: 182434

URL: http://llvm.org/viewvc/llvm-project?rev=182434&view=rev
Log:
Adding a newline for better overall readability

Modified:
    lldb/trunk/source/Core/Module.cpp

Modified: lldb/trunk/source/Core/Module.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Module.cpp?rev=182434&r1=182433&r2=182434&view=diff
==============================================================================
--- lldb/trunk/source/Core/Module.cpp (original)
+++ lldb/trunk/source/Core/Module.cpp Tue May 21 17:34:17 2013
@@ -1278,7 +1278,7 @@ Module::LoadScriptingResourceInTarget (T
                         if (shoud_load == eLoadScriptFromSymFileWarn)
                         {
                             if (feedback_stream)
-                                feedback_stream->Printf("warning: '%s' contains a debug script. To run this script in this debug session:\n\n    command script import \"%s\"\n\nTo run all discovered debug scripts in this session:\n\n    settings set target.load-script-from-symbol-file true"
+                                feedback_stream->Printf("warning: '%s' contains a debug script. To run this script in this debug session:\n\n    command script import \"%s\"\n\nTo run all discovered debug scripts in this session:\n\n    settings set target.load-script-from-symbol-file true\n"
                                                         ,GetFileSpec().GetFileNameStrippingExtension().GetCString(),scripting_fspec.GetPath().c_str());
                             return false;
                         }





More information about the lldb-commits mailing list