Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/carbon/eclipseCarbon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/carbon/eclipseCarbon.c b/features/org.eclipse.equinox.executable.feature/library/carbon/eclipseCarbon.c
index a158f64b0..b76584a56 100644
--- a/features/org.eclipse.equinox.executable.feature/library/carbon/eclipseCarbon.c
+++ b/features/org.eclipse.equinox.executable.feature/library/carbon/eclipseCarbon.c
@@ -537,7 +537,7 @@ char * getJavaVersion(char* command) {
if (value != NULL && (strtol(value, NULL, 10) == 1)) {
value = strtok(NULL, ".");
if (strtol(value, NULL, 10) < 8) {
- result = 1;
+ isSunMaxPermSizeVM = 1;
}
}
}

Back to the top