diff options
author | Tom Tromey <tromey@redhat.com> | 2013-05-14 20:32:15 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-05-14 20:32:15 +0000 |
commit | 503ebb2c1de7f1710f8f9633feb60821f6aac552 (patch) | |
tree | 03a15d09933f1d85308c842b8f96412a581f55dd /gdb/inflow.c | |
parent | 85e1311a3cf4df0eafe2886a29fc753054b71e37 (diff) | |
download | gdb-503ebb2c1de7f1710f8f9633feb60821f6aac552.zip gdb-503ebb2c1de7f1710f8f9633feb60821f6aac552.tar.gz gdb-503ebb2c1de7f1710f8f9633feb60821f6aac552.tar.bz2 |
* go32-nat.c (go32_terminal_info): Make 'args' const.
* inferior.h (child_terminal_info): Update.
* inflow.c (child_terminal_info): Make 'args' const.
* target.c (default_terminal_info): Make 'args' const.
(debug_to_terminal_save_ours): Likewise.
* target.h (struct target_ops) <to_terminal_info>: Make argument
const.
Diffstat (limited to 'gdb/inflow.c')
-rw-r--r-- | gdb/inflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/inflow.c b/gdb/inflow.c index 5146b3a..79a99d1 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -563,7 +563,7 @@ term_info (char *arg, int from_tty) } void -child_terminal_info (char *args, int from_tty) +child_terminal_info (const char *args, int from_tty) { struct inferior *inf; struct terminal_info *tinfo; |