diff options
author | Tom Tromey <tromey@redhat.com> | 2013-05-14 20:35:24 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-05-14 20:35:24 +0000 |
commit | 23b3a2c3d1cc06cd1f9b2d5f72ab2f1c913f675d (patch) | |
tree | ce3a980ab81ed2d1152579719f1112d395acaee9 | |
parent | ca623f82a4ce0c6428a3e42aa13667d65bd97c9e (diff) | |
download | gdb-23b3a2c3d1cc06cd1f9b2d5f72ab2f1c913f675d.zip gdb-23b3a2c3d1cc06cd1f9b2d5f72ab2f1c913f675d.tar.gz gdb-23b3a2c3d1cc06cd1f9b2d5f72ab2f1c913f675d.tar.bz2 |
* ui-file.c (gdb_fopen): Make arguments const.
* ui-file.h (gdb_fopen): Make arguments const.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/ui-file.c | 2 | ||||
-rw-r--r-- | gdb/ui-file.h | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index db4d2fa..6396235 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2013-05-14 Tom Tromey <tromey@redhat.com> + * ui-file.c (gdb_fopen): Make arguments const. + * ui-file.h (gdb_fopen): Make arguments const. + +2013-05-14 Tom Tromey <tromey@redhat.com> + * remote.c (remote_set_trace_notes): Make arguments const. * target.c (update_current_target): Update cast. * target.h (to_set_trace_notes): Make arguments const. diff --git a/gdb/ui-file.c b/gdb/ui-file.c index 5671abd..cf5a86d 100644 --- a/gdb/ui-file.c +++ b/gdb/ui-file.c @@ -663,7 +663,7 @@ stdio_fileopen (FILE *file) } struct ui_file * -gdb_fopen (char *name, char *mode) +gdb_fopen (const char *name, const char *mode) { FILE *f = gdb_fopen_cloexec (name, mode); diff --git a/gdb/ui-file.h b/gdb/ui-file.h index 4196524..9fef68c 100644 --- a/gdb/ui-file.h +++ b/gdb/ui-file.h @@ -130,7 +130,7 @@ extern struct ui_file *mem_fileopen (void); extern struct ui_file *stdio_fileopen (FILE *file); /* Open NAME returning an STDIO based UI_FILE. */ -extern struct ui_file *gdb_fopen (char *name, char *mode); +extern struct ui_file *gdb_fopen (const char *name, const char *mode); /* Create a file which writes to both ONE and TWO. CLOSE_ONE and CLOSE_TWO indicate whether the original files should be |