diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-15 16:28:06 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-04-29 16:14:31 -0600 |
commit | f293a0b5d6b429c3dd8a91e9d55831bfb4efd84a (patch) | |
tree | c44c07aa9eec42a8645287799719fbcf0a040d34 /gdb/mi | |
parent | ae72050b7f8454ef2c0763f5548cc2cd873e27e0 (diff) | |
download | gdb-f293a0b5d6b429c3dd8a91e9d55831bfb4efd84a.zip gdb-f293a0b5d6b429c3dd8a91e9d55831bfb4efd84a.tar.gz gdb-f293a0b5d6b429c3dd8a91e9d55831bfb4efd84a.tar.bz2 |
Convert dprintf to vtable ops
This converts dprintf to use vtable_breakpoint_ops.
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-cmd-break.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mi/mi-cmd-break.c b/gdb/mi/mi-cmd-break.c index 0b8ae5d..fb03431 100644 --- a/gdb/mi/mi-cmd-break.c +++ b/gdb/mi/mi-cmd-break.c @@ -327,7 +327,7 @@ mi_cmd_break_insert_1 (int dprintf, const char *command, char **argv, int argc) else if (dprintf) { type_wanted = bp_dprintf; - ops = &dprintf_breakpoint_ops; + ops = &vtable_breakpoint_ops; } else { |