diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-11-01 17:46:31 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-11-01 17:46:31 +0000 |
| commit | 49996c1d993b805bacee23305e2331c4a4ce847c (patch) | |
| tree | beb4c07a641c21c4c0d6eb6229d1e44a8117eea8 /lldb/source | |
| parent | fc780bbb1604859511dc74fc4b8986bb11194019 (diff) | |
| download | bcm5719-llvm-49996c1d993b805bacee23305e2331c4a4ce847c.tar.gz bcm5719-llvm-49996c1d993b805bacee23305e2331c4a4ce847c.zip | |
[FileSystem] Fix typo in ProcessFreeBSD
llvm-svn: 345860
Diffstat (limited to 'lldb/source')
| -rw-r--r-- | lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp b/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp index 6f96ae66a1b..2ba3ea7e1e6 100644 --- a/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp +++ b/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp @@ -288,7 +288,7 @@ bool ProcessFreeBSD::CanDebug(lldb::TargetSP target_sp, // 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; |

