Skip to content

Commit 46fbca3

Browse files
committed
Merging r353642:
------------------------------------------------------------------------ r353642 | teemperor | 2019-02-10 16:23:58 +0100 (Sun, 10 Feb 2019) | 13 lines lldb: Fix compilation on OpenBSD Summary: Update the OpenBSD Host.cpp for the new SetFile() function signature. Fixes compiling lldb on OpenBSD. Reviewers: krytarowski Reviewed By: krytarowski Subscribers: lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D57907 ------------------------------------------------------------------------ llvm-svn: 354253
1 parent 783fd93 commit 46fbca3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lldb/source/Host/openbsd/Host.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ GetOpenBSDProcessArgs(const ProcessInstanceInfoMatch *match_info_ptr,
6868

6969
cstr = data.GetCStr(&offset);
7070
if (cstr) {
71-
process_info.GetExecutableFile().SetFile(cstr, false,
72-
FileSpec::Style::native);
71+
process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native);
7372

7473
if (!(match_info_ptr == NULL ||
7574
NameMatches(

0 commit comments

Comments
 (0)