[Cmake-commits] CMake branch, next, updated. v3.3.0-rc4-1294-g5add92c

Brad King brad.king at kitware.com
Thu Jul 23 08:39:41 EDT 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  5add92c986d0ade75d7e702ad446702ab5db6b62 (commit)
       via  6f9f8060eabd2b41efa8e730353e949fab3a58f4 (commit)
      from  29ca03c178146aa4a7c9701ad4a3ed569ad2946c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5add92c986d0ade75d7e702ad446702ab5db6b62
commit 5add92c986d0ade75d7e702ad446702ab5db6b62
Merge: 29ca03c 6f9f806
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Jul 23 08:39:40 2015 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Jul 23 08:39:40 2015 -0400

    Merge topic 'update-kwsys' into next
    
    6f9f8060 KWSys: Fix conversion warning in testProcess.c


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6f9f8060eabd2b41efa8e730353e949fab3a58f4
commit 6f9f8060eabd2b41efa8e730353e949fab3a58f4
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Jul 23 08:38:04 2015 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Thu Jul 23 08:38:49 2015 -0400

    KWSys: Fix conversion warning in testProcess.c
    
    Add an explicit cast to avoid a warning about 'int' -> 'unsigned int'
    conversion sign change.  We know our values are positive anyway.
    Fix the warning here while we wait for upstream KWSys to address it.

diff --git a/Source/kwsys/testProcess.c b/Source/kwsys/testProcess.c
index a9268da..333b8ed 100644
--- a/Source/kwsys/testProcess.c
+++ b/Source/kwsys/testProcess.c
@@ -394,7 +394,7 @@ static int runChild2(kwsysProcess* kp,
 
   if(interruptDelay)
     {
-    testProcess_sleep(interruptDelay);
+    testProcess_sleep((unsigned int)interruptDelay);
     kwsysProcess_Interrupt(kp);
     }
 

-----------------------------------------------------------------------

Summary of changes:
 Source/kwsys/testProcess.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list