diff options
Diffstat (limited to 'gdb/serial.c')
-rw-r--r-- | gdb/serial.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/serial.c b/gdb/serial.c index b48b977..91fdcbb 100644 --- a/gdb/serial.c +++ b/gdb/serial.c @@ -23,8 +23,6 @@ #include "gdbcmd.h" #include "cli/cli-utils.h" -extern void _initialize_serial (void); - /* Is serial being debugged? */ static unsigned int global_serial_debug_p; @@ -214,7 +212,7 @@ serial_open (const char *name) ops = serial_interface_lookup ("pipe"); /* Discard ``|'' and any space before the command itself. */ ++open_name; - open_name = skip_spaces_const (open_name); + open_name = skip_spaces (open_name); } /* Check for a colon, suggesting an IP address/port pair. Do this *after* checking for all the interesting prefixes. We |