Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2015-03-09 02:27:33 +0000
committerPascal Rapicault2015-03-09 02:27:33 +0000
commita950b80445e04dc41a3f7364b0ac0074c9b21b5a (patch)
treec3bce3ce82516df3c36ecca747ed3a7cd955e8e2 /features
parent955cbb81dd65c921de5121a14f1178c449e4636d (diff)
downloadrt.equinox.framework-a950b80445e04dc41a3f7364b0ac0074c9b21b5a.tar.gz
rt.equinox.framework-a950b80445e04dc41a3f7364b0ac0074c9b21b5a.tar.xz
rt.equinox.framework-a950b80445e04dc41a3f7364b0ac0074c9b21b5a.zip
Remove undesired printf
Diffstat (limited to 'features')
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/eclipseConfig.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/eclipseConfig.c b/features/org.eclipse.equinox.executable.feature/library/eclipseConfig.c
index 40c024c23..2be4e6a78 100644
--- a/features/org.eclipse.equinox.executable.feature/library/eclipseConfig.c
+++ b/features/org.eclipse.equinox.executable.feature/library/eclipseConfig.c
@@ -89,7 +89,6 @@ _TCHAR* getIniFile(_TCHAR* program, int consoleLauncher){
bname = basename(basec);
config_file = realloc(config_file, strlen(dname) + strlen(bname) + 16 * sizeof(char));
sprintf(config_file, "%s/Eclipse/%s.ini", dname, bname);
- printf("ini location is %s", config_file);
free(dirc);
free(basec);
free(dname);

Back to the top