diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2005-03-11 14:31:58 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2005-03-11 14:31:58 (GMT) |
commit | c8772c286e20d0767828cf9a5997cee5af27f857 (patch) | |
tree | 9d471133dd7bb0c79b86eee024ce447a7b2656c5 /Source/kwsys/SystemTools.cxx | |
parent | 63cd6e39e105fc111974566aa00025f4d8755b70 (diff) | |
download | CMake-c8772c286e20d0767828cf9a5997cee5af27f857.zip CMake-c8772c286e20d0767828cf9a5997cee5af27f857.tar.gz CMake-c8772c286e20d0767828cf9a5997cee5af27f857.tar.bz2 |
COMP: fix some warnings
Diffstat (limited to 'Source/kwsys/SystemTools.cxx')
-rw-r--r-- | Source/kwsys/SystemTools.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 62401a0..36b739f 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -1405,7 +1405,7 @@ unsigned long SystemTools::FileLength(const char* filename) } else { - return fs.st_size; + return static_cast<unsigned long>(fs.st_size); } } @@ -2310,7 +2310,7 @@ SystemTools::GetFilenameWithoutLastExtension(const kwsys_stl::string& filename) bool SystemTools::FileHasSignature(const char *filename, const char *signature, - unsigned long offset) + long offset) { if (!filename || !signature) { |