Make the warning message about not finding the kernel binary clearer
about which kernel binary lldb is referring to.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@180821 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp b/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
index 12e2174..4ef8fb5 100644
--- a/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
+++ b/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
@@ -834,7 +834,7 @@
                 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");
                 }
             }
         }