This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Add the the missing `,' in libjava


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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]