From: carlton Date: Sun, 12 Jan 2003 20:55:32 +0000 (+0000) Subject: 2003-01-12 David Carlton X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=92922e410ebd63a32ae65034cfd4383844ff8c49;p=pf3gnuchains%2Fpf3gnuchains3x.git 2003-01-12 David Carlton * linespec.c (symtab_from_filename): Rename variable 's' to 'file_symtab'. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1527413df3..4c2c4b6b2e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-01-12 David Carlton + + * linespec.c (symtab_from_filename): Rename variable 's' to + 'file_symtab'. + 2003-01-12 Andrew Cagney * d10v-tdep.c (d10v_init_extra_frame_info): Remove checks for a diff --git a/gdb/linespec.c b/gdb/linespec.c index fc64ebe0f7..e4dd2b1107 100644 --- a/gdb/linespec.c +++ b/gdb/linespec.c @@ -1177,7 +1177,7 @@ symtab_from_filename (char **argptr, char *p, int is_quote_enclosed) { char *p1; char *copy; - struct symtab *s; + struct symtab *file_symtab; p1 = p; while (p != *argptr && p[-1] == ' ') @@ -1193,8 +1193,8 @@ symtab_from_filename (char **argptr, char *p, int is_quote_enclosed) copy[p - *argptr] = 0; /* Find that file's data. */ - s = lookup_symtab (copy); - if (s == 0) + file_symtab = lookup_symtab (copy); + if (file_symtab == 0) { if (!have_full_symbols () && !have_partial_symbols ()) error ("No symbol table is loaded. Use the \"file\" command."); @@ -1207,7 +1207,7 @@ symtab_from_filename (char **argptr, char *p, int is_quote_enclosed) p++; *argptr = p; - return s; + return file_symtab; }