Skip to content

Commit c0ada5d

Browse files
committed
Minor fixes
1 parent ef436d0 commit c0ada5d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lldb/test/API/functionalities/data-formatter/embedded-summary/main.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ struct Player {
66
};
77

88
__attribute__((used, section("__DATA_CONST,__lldbsummaries"))) unsigned char
9-
_Movie_type_summary[] = "\x01" // version
10-
"\x25" // record size
11-
"\x07" // type name size
12-
"Player\0" // type name
13-
"\x1c" // summary string size
14-
"${var.name} (${var.number})"; // summary string
9+
_Player_type_summary[] = "\x01" // version
10+
"\x25" // record size
11+
"\x07" // type name size
12+
"Player\0" // type name
13+
"\x1c" // summary string size
14+
"${var.name} (${var.number})"; // summary string
1515

1616
int main() {
1717
struct Player player;

0 commit comments

Comments
 (0)