Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2007-07-30 17:58:19 +0000
committerAndrew Niefer2007-07-30 17:58:19 +0000
commitd360017933fc0b2985e37eafd455a4d8e15878d7 (patch)
tree4905a6cebfa0d73719bce497516240b3c1fb4888 /bundles/org.eclipse.equinox.executable/library/eclipseCommon.c
parentf675cae551d42599536b7ff1532a953d53df3e9e (diff)
downloadrt.equinox.framework-d360017933fc0b2985e37eafd455a4d8e15878d7.tar.gz
rt.equinox.framework-d360017933fc0b2985e37eafd455a4d8e15878d7.tar.xz
rt.equinox.framework-d360017933fc0b2985e37eafd455a4d8e15878d7.zip
bug 196883
Diffstat (limited to 'bundles/org.eclipse.equinox.executable/library/eclipseCommon.c')
-rw-r--r--bundles/org.eclipse.equinox.executable/library/eclipseCommon.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/eclipseCommon.c b/bundles/org.eclipse.equinox.executable/library/eclipseCommon.c
index 4499417aa..05e12c682 100644
--- a/bundles/org.eclipse.equinox.executable/library/eclipseCommon.c
+++ b/bundles/org.eclipse.equinox.executable/library/eclipseCommon.c
@@ -47,7 +47,7 @@ _TCHAR* wsArg = _T_ECLIPSE(DEFAULT_WS); /* the SWT supported GUI to be us
#ifndef _WIN32
static _TCHAR* filterPrefix = NULL; /* prefix for the find files filter */
#endif
-static int prefixLength = 0;
+static size_t prefixLength = 0;
typedef struct {
int segment[3];
@@ -181,7 +181,7 @@ int setenv (const char *name, const char *value, int replace)
_TCHAR* findCommand( _TCHAR* command )
{
_TCHAR* cmdPath;
- int length;
+ size_t length;
_TCHAR* ch;
_TCHAR* dir;
_TCHAR* path;
@@ -250,7 +250,8 @@ _TCHAR* findCommand( _TCHAR* command )
/* Remove quotes */
if (_tcschr( cmdPath, _T_ECLIPSE('"') ) != NULL)
{
- int i = 0, j = 0, c;
+ int i = 0, j = 0;
+ _TCHAR c;
length = _tcslen( cmdPath );
while (i < length) {
c = cmdPath[ i++ ];
@@ -358,7 +359,7 @@ static int filter(const struct dirent *dir) {
_TCHAR* findFile( _TCHAR* path, _TCHAR* prefix)
{
struct _stat stats;
- int pathLength;
+ size_t pathLength;
_TCHAR* candidate = NULL;
_TCHAR* result = NULL;

Back to the top