diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-06-03 20:54:43 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-06-03 20:54:43 +0000 |
commit | a9596cd98aa07c137ed362c7d92df64213b4fa04 (patch) | |
tree | 93d2aea2e0fa868da0f9b56626e5cfe8c2341869 /gdb/ui-file.c | |
parent | 74eda9eb7acc3c2bd375826f92e8ca233d5f767a (diff) | |
download | binutils-gdb-cagney_writestrings-20030508-branch.tar.gz |
Snap const char * mess.cagney_writestrings-20030508-branch
Diffstat (limited to 'gdb/ui-file.c')
-rw-r--r-- | gdb/ui-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ui-file.c b/gdb/ui-file.c index 3af6d2cc3b2..216885282f9 100644 --- a/gdb/ui-file.c +++ b/gdb/ui-file.c @@ -476,7 +476,7 @@ stdio_fileopen (FILE *file) } struct ui_file * -gdb_fopen (char *name, char *mode) +gdb_fopen (const char *name, const char *mode) { FILE *f = fopen (name, mode); if (f == NULL) |