diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-13 16:32:33 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-04-29 16:14:30 -0600 |
commit | 4e9e993a7e7e741703474f0ae4e311657cec4a60 (patch) | |
tree | 93ae0ff2d1e249c035ad7b4f4d8ec25bc58f2fa4 /gdb/break-catch-load.c | |
parent | 2f9ee862bca8e9c8548a6b17927b64c249fb25d4 (diff) | |
download | gdb-4e9e993a7e7e741703474f0ae4e311657cec4a60.zip gdb-4e9e993a7e7e741703474f0ae4e311657cec4a60.tar.gz gdb-4e9e993a7e7e741703474f0ae4e311657cec4a60.tar.bz2 |
Boolify print_solib_event
Change print_solib_event to accept a bool parameter and update the
callers.
Diffstat (limited to 'gdb/break-catch-load.c')
-rw-r--r-- | gdb/break-catch-load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/break-catch-load.c b/gdb/break-catch-load.c index 93e371c..393fc61 100644 --- a/gdb/break-catch-load.c +++ b/gdb/break-catch-load.c @@ -133,7 +133,7 @@ print_it_catch_solib (bpstat *bs) uiout->text ("\n"); if (uiout->is_mi_like_p ()) uiout->field_string ("disp", bpdisp_text (b->disposition)); - print_solib_event (1); + print_solib_event (true); return PRINT_SRC_AND_LOC; } |