diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-08-28 20:39:29 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-08-28 20:39:29 +0000 |
commit | 91174723392cfb8acc1394c4d5e2bc35dd7980d0 (patch) | |
tree | 5101b44ff8e9487bb02de7abd60140b1d57954aa /gdb/mi/mi-getopt.h | |
parent | 78662a6e677a967c9a45f6584f1f1fdeaf73c9e2 (diff) | |
download | gdb-91174723392cfb8acc1394c4d5e2bc35dd7980d0.zip gdb-91174723392cfb8acc1394c4d5e2bc35dd7980d0.tar.gz gdb-91174723392cfb8acc1394c4d5e2bc35dd7980d0.tar.bz2 |
gdb/
Code cleanup - make mi_opt const.
* mi/mi-cmd-break.c (mi_cmd_break_insert, mi_cmd_break_watch): Make
opts const.
* mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
* mi/mi-cmd-env.c (mi_cmd_env_path): Likewise.
(mi_cmd_env_dir): Likewise.
* mi/mi-cmd-target.c (mi_cmd_target_file_get): Likewise.
(mi_cmd_target_file_put): Likewise.
* mi/mi-cmd-target.c (mi_cmd_target_file_delete): Likewise.
* mi/mi-cmd-var.c (mi_cmd_var_evaluate_expression): Likewise.
* mi/mi-getopt.c (mi_getopt): Make opts and opt const.
(mi_valid_noargs): Make opts const.
* mi/mi-getopt.h (mi_getopt): Make opts and opt const.
* mi/mi-main.c (mi_cmd_list_thread_groups): Make opts const.
(mi_cmd_data_read_memory): Likewise.
(mi_cmd_data_read_memory_bytes): Likewise.
(mi_cmd_data_write_memory): Likewise.
Diffstat (limited to 'gdb/mi/mi-getopt.h')
-rw-r--r-- | gdb/mi/mi-getopt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mi/mi-getopt.h b/gdb/mi/mi-getopt.h index a34a354..10b2906 100644 --- a/gdb/mi/mi-getopt.h +++ b/gdb/mi/mi-getopt.h @@ -42,7 +42,7 @@ struct mi_opt; extern int mi_getopt (const char *prefix, int argc, char **argv, - struct mi_opt *opt, int *optind, char **optarg); + const struct mi_opt *opt, int *optind, char **optarg); /* The option list. Terminated by NAME==NULL. ARG_P that the option requires an argument. INDEX is returned to identify th option. */ |