This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[committed]: Fix java build.
- From: "David S. Miller" <davem at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Cc: java-patches at gcc dot gnu dot org
- Date: Fri, 24 Oct 2003 05:02:21 -0700
- Subject: [committed]: Fix java build.
This fixes the -Werror build of java on mainline.
2003-10-24 David S. Miller <davem@redhat.com>
* jcf-parse.c (jcf_parse): Fix args to fatal_error().
--- jcf-parse.c.~1~ Fri Oct 24 03:11:54 2003
+++ jcf-parse.c Fri Oct 24 05:01:24 2003
@@ -632,7 +632,7 @@
if (CLASS_PARSED_P (current_class))
{
/* FIXME - where was first time */
- fatal_error (stderr, "READING CLASS %s for the second time from %s",
+ fatal_error ("READING CLASS %s for the second time from %s",
IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class))),
jcf->filename);
}