From e95a0fffa1fb26a79412d4ee00747a4d6be50bb0 Mon Sep 17 00:00:00 2001
From: Brad King <brad.king@kitware.com>
Date: Mon, 19 Jun 2006 09:49:52 -0400
Subject: [PATCH] COMP: Fix conversion warning.

---
 ProcessWin32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ProcessWin32.c b/ProcessWin32.c
index 554f5bf..e1a53a0 100644
--- a/ProcessWin32.c
+++ b/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
     {
-- 
GitLab