Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2013-02-21 17:09:09 +0000
committerSilenio Quarti2013-02-21 17:09:09 +0000
commit7a8deca84b694f88f68559c7ecad5c7d63a58657 (patch)
tree5033872406f75274e56a53c5bcb5755c38c33528 /bundles/org.eclipse.equinox.executable/library
parent7c39e09970acd849024d3395bf0dd714db3ef248 (diff)
downloadrt.equinox.framework-7a8deca84b694f88f68559c7ecad5c7d63a58657.tar.gz
rt.equinox.framework-7a8deca84b694f88f68559c7ecad5c7d63a58657.tar.xz
rt.equinox.framework-7a8deca84b694f88f68559c7ecad5c7d63a58657.zip
Bug 401325 - eclipse executable doesn't keep Terminal with console output connected - avoid compiler warning
Diffstat (limited to 'bundles/org.eclipse.equinox.executable/library')
-rw-r--r--bundles/org.eclipse.equinox.executable/library/carbon/eclipseCarbon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/carbon/eclipseCarbon.c b/bundles/org.eclipse.equinox.executable/library/carbon/eclipseCarbon.c
index 9ba81bff8..3551255e6 100644
--- a/bundles/org.eclipse.equinox.executable/library/carbon/eclipseCarbon.c
+++ b/bundles/org.eclipse.equinox.executable/library/carbon/eclipseCarbon.c
@@ -575,7 +575,7 @@ char * findVMLibrary( char* command ) {
char * lib = findLib(cmd);
if (lib != NULL) {
// This does not seem to be necessary to load the Mac JVM library
- //adjustLibraryPath(lib);
+ if (0) adjustLibraryPath(lib);
result = lib;
}
}

Back to the top