diff options
| author | David Carlier <devnexen@gmail.com> | 2019-09-10 07:33:39 +0000 |
|---|---|---|
| committer | David Carlier <devnexen@gmail.com> | 2019-09-10 07:33:39 +0000 |
| commit | c190890c29b96f36ea602f88e3e0deb5a94ad522 (patch) | |
| tree | a65b4c6b3d135c0332664e917241716847651f81 | |
| parent | 88d6783f708ee13f4a1d24506d51ed15f9a2bb42 (diff) | |
| download | bcm5719-llvm-c190890c29b96f36ea602f88e3e0deb5a94ad522.tar.gz bcm5719-llvm-c190890c29b96f36ea602f88e3e0deb5a94ad522.zip | |
[LLDB] FreeBSD fix new SetFile call.
llvm-svn: 371491
| -rw-r--r-- | lldb/source/Host/freebsd/HostInfoFreeBSD.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp b/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp index eeaf222762d..7fc6f43d467 100644 --- a/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp +++ b/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp @@ -67,7 +67,7 @@ FileSpec HostInfoFreeBSD::GetProgramFileSpec() { char exe_path[PATH_MAX]; size_t exe_path_size = sizeof(exe_path); if (sysctl(exe_path_mib, 4, exe_path, &exe_path_size, NULL, 0) == 0) - g_program_filespec.SetFile(exe_path, false); + g_program_filespec.SetFile(exe_path, FileSpec::Style::native); } return g_program_filespec; } |

