dummyagent.c (Agent_OnLoad): Add missing return value.

* testsuite/libjava.jvmti/dummyagent.c (Agent_OnLoad):
        Add missing return value.

From-SVN: r125594
This commit is contained in:
Keith Seitz 2007-06-09 17:32:42 +00:00 committed by Keith Seitz
parent 0da300cde3
commit 408a86c03e
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-06-09 Keith Seitz <keiths@redhat.com>
* testsuite/libjava.jvmti/dummyagent.c (Agent_OnLoad):
Add missing return value.
2007-06-03 Matthias Klose <doko@ubuntu.com>
* java/io/natFileWin32.cc (setFilePermissions): New (stub only).

View File

@ -5,5 +5,6 @@ Agent_OnLoad (JavaVM *vm, char *options, void *reserved)
{
// nothing -- this is just a stub to get JVMTI properly
// initialized
return 0;
}