summaryrefslogtreecommitdiffstats
path: root/Source/kwsys
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-06-19 13:49:52 (GMT)
committerBrad King <brad.king@kitware.com>2006-06-19 13:49:52 (GMT)
commitf26a0302bec5093330e488e5ab44b1cb774a0899 (patch)
tree3c790e0cfae161fa45c878972358ae73d5ecb511 /Source/kwsys
parentc8f35fc4ef561fe6a1b0ede87d36118c74f46545 (diff)
downloadCMake-f26a0302bec5093330e488e5ab44b1cb774a0899.zip
CMake-f26a0302bec5093330e488e5ab44b1cb774a0899.tar.gz
CMake-f26a0302bec5093330e488e5ab44b1cb774a0899.tar.bz2
COMP: Fix conversion warning.
Diffstat (limited to 'Source/kwsys')
-rw-r--r--Source/kwsys/ProcessWin32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/ProcessWin32.c b/Source/kwsys/ProcessWin32.c
index 406a187..1e25edc 100644
--- a/Source/kwsys/ProcessWin32.c
+++ b/Source/kwsys/ProcessWin32.c
@@ -2073,7 +2073,7 @@ int kwsysProcessComputeCommandLength(kwsysProcess* cp,
{
/* Treat the first argument as a verbatim command line. Use its
length directly and add space for the null-terminator. */
- length = strlen(*command)+1;
+ length = (int)strlen(*command)+1;
}
else
{