From: Pedro Alves Date: Thu, 9 Oct 2008 01:14:26 +0000 (+0000) Subject: * ser-mingw.c: Include "command.h". X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=efdb2a86e46122879fab082916287486d5208b41;p=deliverable%2Fbinutils-gdb.git * ser-mingw.c: Include "command.h". (pipe_windows_open): Declare locals at the beginning of the scope. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 270a401072..174d63e5b1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2008-10-09 Pedro Alves + + * ser-mingw.c: Include "command.h". + (pipe_windows_open): Declare locals at the beginning of the scope. + 2008-10-08 Pedro Alves * remote.c (struct remote_state) : New diff --git a/gdb/ser-mingw.c b/gdb/ser-mingw.c index 6a883aa19a..99612dfc6f 100644 --- a/gdb/ser-mingw.c +++ b/gdb/ser-mingw.c @@ -32,6 +32,8 @@ #include "gdb_assert.h" #include "gdb_string.h" +#include "command.h" + void _initialize_ser_windows (void); struct ser_windows_state @@ -817,12 +819,14 @@ pipe_windows_open (struct serial *scb, const char *name) { struct pipe_state *ps; FILE *pex_stderr; + char **argv; + struct cleanup *back_to; if (name == NULL) error_no_arg (_("child command")); - char **argv = gdb_buildargv (name); - struct cleanup *back_to = make_cleanup_freeargv (argv); + argv = gdb_buildargv (name); + back_to = make_cleanup_freeargv (argv); if (! argv[0] || argv[0][0] == '\0') error ("missing child command");