diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp')
| -rw-r--r-- | contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp b/contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp index 18eae3eb7606..d123936b3668 100644 --- a/contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp +++ b/contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp @@ -69,7 +69,7 @@ FileSpec HostInfoFreeBSD::GetProgramFileSpec() { if (sysctl(exe_path_mib, 4, NULL, &exe_path_size, NULL, 0) == 0) { char *exe_path = new char[exe_path_size]; if (sysctl(exe_path_mib, 4, exe_path, &exe_path_size, NULL, 0) == 0) - g_program_filespec.SetFile(exe_path, false, FileSpec::Style::native); + g_program_filespec.SetFile(exe_path, FileSpec::Style::native); delete[] exe_path; } } |
