Skip to content

Commit 8bb3d8b

Browse files
committed
[gdb/symtab] Fix two style issues in gdb/dwarf2/index-write.c
While reviewing gdb/dwarf2/index-write.c I noticed two style issues. Fix these. Tested on x86_64-linux. Approved-By: Tom Tromey <[email protected]>
1 parent 729d066 commit 8bb3d8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gdb/dwarf2/index-write.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1300,8 +1300,8 @@ write_gdbindex (dwarf2_per_bfd *per_bfd, cooked_index *table,
13001300
data_buf shortcuts;
13011301
write_shortcuts_table (table, shortcuts, constant_pool);
13021302

1303-
write_gdbindex_1(out_file, objfile_cu_list, types_cu_list, addr_vec,
1304-
symtab_vec, constant_pool, shortcuts);
1303+
write_gdbindex_1 (out_file, objfile_cu_list, types_cu_list, addr_vec,
1304+
symtab_vec, constant_pool, shortcuts);
13051305

13061306
if (dwz_out_file != NULL)
13071307
write_gdbindex_1 (dwz_out_file, dwz_cu_list, {}, {}, {}, {}, {});
@@ -1575,7 +1575,7 @@ save_gdb_index_command (const char *arg, int from_tty)
15751575
_("Error while writing index for `%s': "),
15761576
objfile_name (objfile));
15771577
}
1578-
}
1578+
}
15791579

15801580
}
15811581
}

0 commit comments

Comments
 (0)