Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2007-02-06 23:35:28 +0000
committerAndrew Niefer2007-02-06 23:35:28 +0000
commit36bd064c34872a9dbd25bb88e327dd33ef9c760b (patch)
treeb8fe9a95c28b3544817247ae41fa0a074b43890b /bundles/org.eclipse.equinox.executable/library/eclipseJNI.c
parent1e265ec85543e71d113e68885b3234b2937373fb (diff)
downloadrt.equinox.framework-36bd064c34872a9dbd25bb88e327dd33ef9c760b.tar.gz
rt.equinox.framework-36bd064c34872a9dbd25bb88e327dd33ef9c760b.tar.xz
rt.equinox.framework-36bd064c34872a9dbd25bb88e327dd33ef9c760b.zip
Diffstat (limited to 'bundles/org.eclipse.equinox.executable/library/eclipseJNI.c')
-rw-r--r--bundles/org.eclipse.equinox.executable/library/eclipseJNI.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/eclipseJNI.c b/bundles/org.eclipse.equinox.executable/library/eclipseJNI.c
index c3f651202..698ec64ee 100644
--- a/bundles/org.eclipse.equinox.executable/library/eclipseJNI.c
+++ b/bundles/org.eclipse.equinox.executable/library/eclipseJNI.c
@@ -327,7 +327,7 @@ void cleanupVM(int exitCode) {
if (systemClass != NULL) {
exitMethod = (*env)->GetStaticMethodID(env, systemClass, "exit", "(I)V");
if (exitMethod != NULL) {
- (*env)->CallStaticObjectMethod(env, systemClass, exitMethod, exitCode);
+ (*env)->CallStaticVoidMethod(env, systemClass, exitMethod, exitCode);
}
}
if ((*env)->ExceptionOccurred(env)) {

Back to the top