Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2007-07-24 19:34:06 +0000
committerAndrew Niefer2007-07-24 19:34:06 +0000
commit606f7469b68ad068135afc228ccd751ba980b162 (patch)
treecb715743021da4dee97b2805e0d1fc2334e156be
parent6cce89e18b20b7c16162aad8c174b13e835d0953 (diff)
downloadrt.equinox.framework-606f7469b68ad068135afc228ccd751ba980b162.tar.gz
rt.equinox.framework-606f7469b68ad068135afc228ccd751ba980b162.tar.xz
rt.equinox.framework-606f7469b68ad068135afc228ccd751ba980b162.zip
need c-style commentsR33x_v20070734R33x_v20070724
-rw-r--r--bundles/org.eclipse.equinox.executable/library/eclipse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/eclipse.c b/bundles/org.eclipse.equinox.executable/library/eclipse.c
index 2b59fc283..66c9b98c1 100644
--- a/bundles/org.eclipse.equinox.executable/library/eclipse.c
+++ b/bundles/org.eclipse.equinox.executable/library/eclipse.c
@@ -504,7 +504,7 @@ JNIEXPORT int run(int argc, _TCHAR* argv[], _TCHAR* vmArgs[])
}
if (exitData != 0) {
errorMsg = exitData;
- exitData = NULL; // keep exit data from being free'd twice
+ exitData = NULL; /* keep exit data from being free'd twice */
if (_tcslen( errorMsg ) == 0) {
free( errorMsg );
errorMsg = NULL;

Back to the top