aboutsummaryrefslogtreecommitdiff
path: root/gdb/breakpoint.c
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2004-02-23 19:26:14 +0000
committerJeff Johnston <jjohnstn@redhat.com>2004-02-23 19:26:14 +0000
commitcbdeadcaa3b68c48146dd26b5c812d2439cfb0ec (patch)
tree6bff818f38b09d8c76eff97fff0aa81f1f675697 /gdb/breakpoint.c
parent8ee9a8b2e70a9b650d1a60aa71b61936efa67c6a (diff)
downloadgdb-cbdeadcaa3b68c48146dd26b5c812d2439cfb0ec.zip
gdb-cbdeadcaa3b68c48146dd26b5c812d2439cfb0ec.tar.gz
gdb-cbdeadcaa3b68c48146dd26b5c812d2439cfb0ec.tar.bz2
2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
* defs.h (nquery, yquery): New prototypes. * breakpoint.c (break_command_1): Use new nquery interface. * utils.c (defaulted_query, nquery, yquery): New functions.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r--gdb/breakpoint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index a4cfa46..ca5aff5 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -5103,7 +5103,7 @@ break_command_1 (char *arg, int flag, int from_tty, struct breakpoint *pending_b
error_output_message (NULL, err_msg);
xfree (err_msg);
- if (!query ("Make breakpoint pending on future shared library load? "))
+ if (!nquery ("Make breakpoint pending on future shared library load? "))
return rc;
copy_arg = xstrdup (addr_start);
addr_string = &copy_arg;