From f26a0302bec5093330e488e5ab44b1cb774a0899 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 19 Jun 2006 09:49:52 -0400 Subject: [PATCH] COMP: Fix conversion warning. --- Source/kwsys/ProcessWin32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/ProcessWin32.c b/Source/kwsys/ProcessWin32.c index 406a18717..1e25edcf5 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 {