Skip to content
This repository was archived by the owner on Apr 2, 2020. It is now read-only.

Commit 455b1e2

Browse files
committed
[lldb] Remove ')' to fix the build
That ')' slipped in by accident in the reformatting commit. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@369660 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent d790791 commit 455b1e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/Commands/CommandObjectProcess.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ class CommandObjectProcessAttach : public CommandObjectProcessLaunchOrAttach {
355355
for (size_t i = 0; i < num_matches; ++i) {
356356
request.AddCompletion(
357357
llvm::StringRef(process_infos.GetProcessNameAtIndex(i),
358-
process_infos.GetProcessNameLengthAtIndex(i))));
358+
process_infos.GetProcessNameLengthAtIndex(i)));
359359
}
360360
}
361361

0 commit comments

Comments
 (0)