mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
fix off by one error in test for error.
This commit is contained in:
parent
920581c57e
commit
993f3aa5bc
@ -1,3 +1,8 @@
|
||||
Tue Feb 27 16:56:13 2001 David Taylor <taylor@redhat.com>
|
||||
|
||||
* symtab.c (search_symbols): Fix off by one error in test for
|
||||
error.
|
||||
|
||||
2001-02-23 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* config/sparc/sp64linux.mt: New file.
|
||||
@ -538,6 +543,7 @@ Wed Feb 7 19:41:21 2001 Andrew Cagney <cagney@redhat.com>
|
||||
(fill_fpregset): Likewise.
|
||||
(supply_fpregset): Likewise.
|
||||
|
||||
>>>>>>> 1.973
|
||||
Tue Feb 6 11:58:57 2001 David Taylor <taylor@redhat.com>
|
||||
|
||||
* valops.c (value_cast): If casting a scalar to a pointer, do not
|
||||
|
@ -2348,7 +2348,7 @@ search_symbols (char *regexp, namespace_enum kind, int nfiles, char *files[],
|
||||
struct symbol_search *tail;
|
||||
struct cleanup *old_chain = NULL;
|
||||
|
||||
if (kind < LABEL_NAMESPACE)
|
||||
if (kind < VARIABLES_NAMESPACE)
|
||||
error ("must search on specific namespace");
|
||||
|
||||
ourtype = types[(int) (kind - VARIABLES_NAMESPACE)];
|
||||
|
Loading…
Reference in New Issue
Block a user