[Lldb-commits] [lldb] r345860 - [FileSystem] Fix typo in ProcessFreeBSD

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 1 10:46:31 PDT 2018


Author: jdevlieghere
Date: Thu Nov  1 10:46:31 2018
New Revision: 345860

URL: http://llvm.org/viewvc/llvm-project?rev=345860&view=rev
Log:
[FileSystem] Fix typo in ProcessFreeBSD

Modified:
    lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp

Modified: lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp?rev=345860&r1=345859&r2=345860&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp (original)
+++ lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp Thu Nov  1 10:46:31 2018
@@ -288,7 +288,7 @@ bool ProcessFreeBSD::CanDebug(lldb::Targ
   // For now we are just making sure the file exists for a given module
   ModuleSP exe_module_sp(target_sp->GetExecutableModule());
   if (exe_module_sp.get())
-    return FileSystem::Instance()::Exists(exe_module_sp->GetFileSpec());
+    return FileSystem::Instance().Exists(exe_module_sp->GetFileSpec());
   // If there is no executable module, we return true since we might be
   // preparing to attach.
   return true;




More information about the lldb-commits mailing list