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:
Eli Zaretskii 2019-03-02 15:22:11 +02:00
parent 742a7df5f4
commit a6a4b2c636
3 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,11 @@
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.
* NEWS: Mention end of support for native debugging on MS-Windows
before XP.

View File

@ -410,7 +410,9 @@ tui_enable (void)
{
WINDOW *w;
SCREEN *s;
const char *cap;
#ifndef __MINGW32__
const char *cap;
#endif
const char *interp;
/* If the top level interpreter is not the console/tui (e.g.,

View File

@ -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;