PATCH: Add the the missing `,' in libjava
H. J. Lu
hjl@lucon.org
Mon Apr 9 15:00:00 GMT 2007
This patch:
http://gcc.gnu.org/ml/gcc-cvs/2007-04/msg00282.html
has a missing `,'. I got
/export/gnu/src/gcc/gcc/libjava/prims.cc: In function 'jint
load_jvmti_agent(const char*)':
/export/gnu/src/gcc/gcc/libjava/prims.cc:1402: error: expected `)'
before 'name'/export/gnu/src/gcc/gcc/libjava/prims.cc:1402: warning:
too few arguments for format
I will check it in shortly.
H.J.
---
2007-04-09 H.J. Lu <hongjiu.lu@intel.com>
* prims.cc (load_jvmti_agent): Add the missing `,'.
--- libjava/prims.cc.xxx 2007-04-09 07:08:06.000000000 -0700
+++ libjava/prims.cc 2007-04-09 07:53:35.000000000 -0700
@@ -1398,7 +1398,7 @@ load_jvmti_agent (const char *name)
if (!jvmti_agentonload)
{
fprintf (stderr,
- "libgcj: Error finding agent function in library %s.\n"
+ "libgcj: Error finding agent function in library %s.\n",
name);
lt_dlclose (lib);
lib = NULL;
More information about the Java-patches
mailing list