mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
Avoid compilation warnings on MinGW.
gdb/ChangeLog: 2019-03-02 Eli Zaretskii <eliz@gnu.org> * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from for-loop range, to avoid compiler warnings. * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to avoid compiler warnings about unused variables.
This commit is contained in:
@ -472,7 +472,7 @@ xml_list_syscalls_by_group (struct gdbarch *gdbarch, const char *group,
|
||||
if (groupdesc == NULL)
|
||||
return false;
|
||||
|
||||
for (const struct syscall_desc *sysdesc : groupdesc->syscalls)
|
||||
for (const syscall_desc *sysdesc : groupdesc->syscalls)
|
||||
syscalls->push_back (sysdesc->number);
|
||||
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user