Skip to content

Commit 11ef887

Browse files
committed
address review comments
1 parent 692a387 commit 11ef887

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lldb/source/Commands/CommandObjectSource.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1192,11 +1192,11 @@ class CommandObjectSourceList : public CommandObjectParsed {
11921192
}
11931193
if (support_matches_count == 0) {
11941194
result.AppendErrorWithFormat(
1195-
"No file found for requested header: \"%s.\"\n", filename);
1195+
"No file found for requested file: \"%s.\"\n", filename);
11961196
return;
11971197
} else if (support_matches_count > 1) {
11981198
result.AppendErrorWithFormat(
1199-
"Multiple files found for requested header: \"%s.\"\n",
1199+
"Multiple files found for requested file: \"%s.\"\n",
12001200
filename);
12011201
return;
12021202
}

lldb/test/Shell/Commands/list-header.test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
## Test that `list header.h:<line>` works correctly when header is available.
22
##
3-
# REQUIRES: x86
43
# RUN: split-file %s %t
54

65
# RUN: %clang_host -g %t/main_with_inlined.cc %t/foo.cc -o %t/main_with_inlined.out

0 commit comments

Comments
 (0)