diff options
author | Stan Shebs <shebs@codesourcery.com> | 1994-04-15 21:55:49 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1994-04-15 21:55:49 +0000 |
commit | fad466eb6de0629edc89081998337fd13566e989 (patch) | |
tree | 0190472f3bd8a3ce36a30ba310c4aa2acfb5cfc0 /gdb/breakpoint.c | |
parent | 97ea252ef8065df3fcc039801fcc370aa3e3c00f (diff) | |
download | gdb-fad466eb6de0629edc89081998337fd13566e989.zip gdb-fad466eb6de0629edc89081998337fd13566e989.tar.gz gdb-fad466eb6de0629edc89081998337fd13566e989.tar.bz2 |
Fri Apr 15 11:53:46 1994 Stan Shebs (shebs@andros.cygnus.com)
* source.c (DIRNAME_SEPARATOR): New macro, replaces all references
to : in search path processing.
* defs.h (qsort): Rename argument in prototype.
* symtab.h (SAYMBOL_VALUE): Rename value field, avoids bugs in
some compilers.
* breakpoint.c, exec.c, mdebugread.c, mipsread.c, xcoffexec.c
(false): Eliminate usages.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 457ca91..dc15de2 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -2293,7 +2293,7 @@ can_use_hardware_watchpoint (b) if (!(v->lval == lval_memory) || v->lval == not_lval || (v->lval != not_lval - && v->modifiable == false)) + && v->modifiable == 0)) return 0; else if (v->lval == lval_memory) |