[Lldb-commits] [lldb] r180821 - Make the warning message about not finding the kernel binary clearer

Jason Molenda jmolenda at apple.com
Tue Apr 30 15:38:28 PDT 2013


Author: jmolenda
Date: Tue Apr 30 17:38:28 2013
New Revision: 180821

URL: http://llvm.org/viewvc/llvm-project?rev=180821&view=rev
Log:
Make the warning message about not finding the kernel binary clearer
about which kernel binary lldb is referring to.

Modified:
    lldb/trunk/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp

Modified: lldb/trunk/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp?rev=180821&r1=180820&r2=180821&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp (original)
+++ lldb/trunk/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp Tue Apr 30 17:38:28 2013
@@ -834,7 +834,7 @@ DynamicLoaderDarwinKernel::KextImageInfo
                 Stream *s = &target.GetDebugger().GetOutputStream();
                 if (s)
                 {
-                    s->Printf ("WARNING: Unable to locate kernel binary on this system.\n");
+                    s->Printf ("WARNING: Unable to locate kernel binary on the debugger system.\n");
                 }
             }
         }





More information about the lldb-commits mailing list