diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-11 18:30:25 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-11 18:30:25 +0000 |
commit | 17dd17662ba95a0cbb4ec35327095c08290da99b (patch) | |
tree | 85fa59ac82b177a1a61fd74e4bb3500fa1d06281 /gcc/cp/repo.c | |
parent | 76ac91977ae2c7eacac806b8255fa45230d61f4f (diff) | |
download | gcc-17dd17662ba95a0cbb4ec35327095c08290da99b.tar.gz |
* decl2.c (build_call_from_tree): Fix uninitialized variable.
* parse.y (parse_finish_call_expr): Likewise.
* repo.c (old_args, old_dir, old_main): Const-ify.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56208 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/repo.c')
-rw-r--r-- | gcc/cp/repo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/repo.c b/gcc/cp/repo.c index e27d8c2199e..64c6ec873fc 100644 --- a/gcc/cp/repo.c +++ b/gcc/cp/repo.c @@ -47,7 +47,7 @@ static GTY(()) tree original_repo; static char *repo_name; static FILE *repo_file; -static char *old_args, *old_dir, *old_main; +static const char *old_args, *old_dir, *old_main; static struct obstack temporary_obstack; |