diff options
author | Tom Tromey <tromey@redhat.com> | 2010-09-08 18:05:42 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-09-08 18:05:42 +0000 |
commit | 9bd89d67b6a67f05379ee423e89146671d8ace83 (patch) | |
tree | 6dd849141f35b5d0677c80ff0004678a25349b76 /gdb/breakpoint.c | |
parent | 1d040b0d09f58eb784667e444aef4c6c1517ec14 (diff) | |
download | gdb-9bd89d67b6a67f05379ee423e89146671d8ace83.zip gdb-9bd89d67b6a67f05379ee423e89146671d8ace83.tar.gz gdb-9bd89d67b6a67f05379ee423e89146671d8ace83.tar.bz2 |
* breakpoint.c (create_breakpoint): Add missing _().
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 1d3f7fc..b4502e7 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -7545,7 +7545,7 @@ create_breakpoint (struct gdbarch *gdbarch, /* If pending breakpoint support is auto query and the user selects no, then simply return the error code. */ if (pending_break_support == AUTO_BOOLEAN_AUTO - && !nquery ("Make breakpoint pending on future shared library load? ")) + && !nquery (_("Make breakpoint pending on future shared library load? "))) return 0; /* At this point, either the user was queried about setting |