[Lldb-commits] [lldb] r345898 - [FileSystem] Update SetFile signature.

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 1 15:16:34 PDT 2018


Author: jdevlieghere
Date: Thu Nov  1 15:16:34 2018
New Revision: 345898

URL: http://llvm.org/viewvc/llvm-project?rev=345898&view=rev
Log:
[FileSystem] Update SetFile signature.

Modified:
    lldb/trunk/source/Host/freebsd/HostInfoFreeBSD.cpp

Modified: lldb/trunk/source/Host/freebsd/HostInfoFreeBSD.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/freebsd/HostInfoFreeBSD.cpp?rev=345898&r1=345897&r2=345898&view=diff
==============================================================================
--- lldb/trunk/source/Host/freebsd/HostInfoFreeBSD.cpp (original)
+++ lldb/trunk/source/Host/freebsd/HostInfoFreeBSD.cpp Thu Nov  1 15:16:34 2018
@@ -69,7 +69,7 @@ FileSpec HostInfoFreeBSD::GetProgramFile
     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;
     }
   }




More information about the lldb-commits mailing list