diff options
author | Nick Roberts <nickrob@snap.net.nz> | 2006-06-02 03:43:18 +0000 |
---|---|---|
committer | Nick Roberts <nickrob@snap.net.nz> | 2006-06-02 03:43:18 +0000 |
commit | 1fbc2a49cc936605f3afab2537730e3b2c697704 (patch) | |
tree | 4b4bd89e8aa96e15be6e029a9b2f5feb8059670a /gdb | |
parent | 8a786d82c70ee4798f1a6a2c63b3daad1a489f2f (diff) | |
download | gdb-1fbc2a49cc936605f3afab2537730e3b2c697704.zip gdb-1fbc2a49cc936605f3afab2537730e3b2c697704.tar.gz gdb-1fbc2a49cc936605f3afab2537730e3b2c697704.tar.bz2 |
(print_it_typical): Use EXEC_ASYNC_LOCATION_REACHED.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/breakpoint.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index fd231de..98db140 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -2328,7 +2328,9 @@ print_it_typical (bpstat bs) case bp_until: if (ui_out_is_mi_like_p (uiout)) - ui_out_field_string (uiout, "reason", "location-reached"); + ui_out_field_string + (uiout, "reason", + async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED)); return PRINT_UNKNOWN; break; |