summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/Registry.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-07-12 13:21:26 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-07-12 13:21:26 (GMT)
commit2e1882389b5908d817a664bd617a5ffc2a8ddfa0 (patch)
treea27fa4d2a8603d44e7ad4b904e6e53d087aa97fb /Source/kwsys/Registry.cxx
parentdaa99e753d4c9c24d40c680012a825c1d704040a (diff)
downloadCMake-2e1882389b5908d817a664bd617a5ffc2a8ddfa0.zip
CMake-2e1882389b5908d817a664bd617a5ffc2a8ddfa0.tar.gz
CMake-2e1882389b5908d817a664bd617a5ffc2a8ddfa0.tar.bz2
COMP: Remove warnings
Diffstat (limited to 'Source/kwsys/Registry.cxx')
-rw-r--r--Source/kwsys/Registry.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/kwsys/Registry.cxx b/Source/kwsys/Registry.cxx
index b09898a..685c50b 100644
--- a/Source/kwsys/Registry.cxx
+++ b/Source/kwsys/Registry.cxx
@@ -704,7 +704,7 @@ void RegistryHelper::SetSubKey(const char* sk)
//----------------------------------------------------------------------------
char *RegistryHelper::Strip(char *str)
{
- int cc;
+ size_t cc;
size_t len;
char *nstr;
if ( !str )
@@ -713,7 +713,7 @@ char *RegistryHelper::Strip(char *str)
}
len = strlen(str);
nstr = str;
- for( cc=0; cc<(int)len; cc++ )
+ for( cc=0; cc < len; cc++ )
{
if ( !isspace( *nstr ) )
{
@@ -721,7 +721,7 @@ char *RegistryHelper::Strip(char *str)
}
nstr ++;
}
- for( cc=int(strlen(nstr)-1); cc>=0; cc-- )
+ for( cc= strlen(nstr)-1; cc>=0; cc-- )
{
if ( !isspace( nstr[cc] ) )
{