diff options
author | Aleksandar Ristovski <aristovski@qnx.com> | 2008-06-05 18:31:53 +0000 |
---|---|---|
committer | Aleksandar Ristovski <aristovski@qnx.com> | 2008-06-05 18:31:53 +0000 |
commit | c0b37c48d06454caf48d676a98ae74105d3b8558 (patch) | |
tree | 7da4f4d9485d0afb5a65af434ce8828af59f0c2a /gdb/breakpoint.c | |
parent | 1e3a102abae6b1ee0e07f548d83cfc21dbb77946 (diff) | |
download | gdb-c0b37c48d06454caf48d676a98ae74105d3b8558.zip gdb-c0b37c48d06454caf48d676a98ae74105d3b8558.tar.gz gdb-c0b37c48d06454caf48d676a98ae74105d3b8558.tar.bz2 |
* breakpoint.c (print_exception_catchpoint): Put 'exception' back to
'exception caught|thrown' message.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index cf2399d..808d062 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -6511,8 +6511,8 @@ print_exception_catchpoint (struct breakpoint *b) if (!ui_out_is_mi_like_p (uiout)) ui_out_field_int (uiout, "bkptno", b->number); ui_out_text (uiout, - bp_throw ? " (thrown), " - : " (caught), "); + bp_throw ? " (exception thrown), " + : " (exception caught), "); if (ui_out_is_mi_like_p (uiout)) { ui_out_field_string (uiout, "reason", |