diff options
author | Graham Stott <grahams@gcc.gnu.org> | 2002-01-03 07:50:49 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2002-01-03 07:50:49 +0000 |
commit | 37b310124a4d3c1fc26315559688d239bb324c9e (patch) | |
tree | cb7640e42c9974b495b671010286599c46ee23f7 /gcc/java/class.c | |
parent | 8e42ace183a257767b2af6cce4a412f4c14e9f68 (diff) | |
download | gcc-37b310124a4d3c1fc26315559688d239bb324c9e.zip gcc-37b310124a4d3c1fc26315559688d239bb324c9e.tar.gz gcc-37b310124a4d3c1fc26315559688d239bb324c9e.tar.bz2 |
class.c (compile_resource_file): Update copyright date.
* class.c (compile_resource_file): Update copyright date.
Constify filename parameter.
java-tree.h: Update copyright date.
(compile_resource_file): Constify filename parameter.
From-SVN: r48503
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r-- | gcc/java/class.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c index 68e25b9..bd45306 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -1,5 +1,5 @@ /* Functions related to building classes and their related objects. - Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 + Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GNU CC. @@ -853,7 +853,7 @@ hashUtf8String (str, len) void compile_resource_file (name, filename) char *name; - char *filename; + const char *filename; { struct stat stat_buf; int fd; |