This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[PATCH] Add missing return value in dummyagent.c
- From: Keith Seitz <keiths at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: Sat, 09 Jun 2007 10:32:18 -0700
- Subject: [PATCH] Add missing return value in dummyagent.c
Hi,
I'm committing this tiny patch as obvious (do we have such a rule?). It
adds the missing return value from the Agent_OnLoad function defined in
the jvmti testsuite's dummyagent.c.
Keith
ChangeLog
2007-06-09 Keith Seitz <keiths@redhat.com>
* testsuite/libjava.jvmti/dummyagent.c (Agent_OnLoad):
Add missing return value.
Index: testsuite/libjava.jvmti/dummyagent.c
===================================================================
--- testsuite/libjava.jvmti/dummyagent.c (revision 125041)
+++ testsuite/libjava.jvmti/dummyagent.c (working copy)
@@ -5,5 +5,6 @@
{
// nothing -- this is just a stub to get JVMTI properly
// initialized
+ return 0;
}