From cfee916b7c90bafa372ff86f2b21d5800fc8bc99 Mon Sep 17 00:00:00 2001
From: Alexander Neundorf <neundorf@kde.org>
Date: Tue, 29 May 2007 08:42:39 -0400
Subject: COMP: less warnings with msvc8

Alex
---
 Source/cmHexFileConverter.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Source/cmHexFileConverter.cxx b/Source/cmHexFileConverter.cxx
index 176ec3b..bf27383 100644
--- a/Source/cmHexFileConverter.cxx
+++ b/Source/cmHexFileConverter.cxx
@@ -38,7 +38,7 @@ static unsigned int ChompStrlen(const char* line)
     {
     return 0;
     }
-  size_t length = strlen(line);
+  unsigned int  length = static_cast<unsigned int>(strlen(line));
   if ((line[length-1] == '\n') || (line[length-1] == '\r'))
     {
     length--;
-- 
cgit v0.12