diff options
author | Tom Tromey <tom@tromey.com> | 2017-09-09 21:51:39 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-09-27 08:44:40 -0600 |
commit | 31d56ade0e943aca57acbc030334d65ae0b6f866 (patch) | |
tree | cd64e0a0410eb68b54d83564b0d72c4d923c9fdc /gdb/dummy-frame.c | |
parent | b961da0bb033e0058059695fdc28c5fbe0057c1a (diff) | |
download | gdb-31d56ade0e943aca57acbc030334d65ae0b6f866.zip gdb-31d56ade0e943aca57acbc030334d65ae0b6f866.tar.gz gdb-31d56ade0e943aca57acbc030334d65ae0b6f866.tar.bz2 |
Constify maintenance_print_dummy_frames
gdb/ChangeLog
2017-09-27 Tom Tromey <tom@tromey.com>
* dummy-frame.c (maintenance_print_dummy_frames): Constify.
Diffstat (limited to 'gdb/dummy-frame.c')
-rw-r--r-- | gdb/dummy-frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dummy-frame.c b/gdb/dummy-frame.c index 8dc4c9b..a08031c 100644 --- a/gdb/dummy-frame.c +++ b/gdb/dummy-frame.c @@ -403,7 +403,7 @@ fprint_dummy_frames (struct ui_file *file) } static void -maintenance_print_dummy_frames (char *args, int from_tty) +maintenance_print_dummy_frames (const char *args, int from_tty) { if (args == NULL) fprint_dummy_frames (gdb_stdout); |