diff options
Diffstat (limited to 'gdb/compile')
-rw-r--r-- | gdb/compile/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/compile/compile.c b/gdb/compile/compile.c index fc23d12..4a2f339 100644 --- a/gdb/compile/compile.c +++ b/gdb/compile/compile.c @@ -367,7 +367,7 @@ get_selected_pc_producer_options (void) cs = symtab->producer; while (*cs != 0 && *cs != '-') - cs = skip_spaces_const (skip_to_space_const (cs)); + cs = skip_spaces (skip_to_space (cs)); if (*cs != '-') return NULL; return cs; |