You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2009/10/14 16:04:06 UTC

svn commit: r825139 [1/2] - in /activemq/activemq-cpp/trunk/activemq-cpp: src/main/decaf/lang/Thread.cpp vs2005-build/vs2005-activemq.vcproj

Author: tabish
Date: Wed Oct 14 14:04:06 2009
New Revision: 825139

URL: http://svn.apache.org/viewvc?rev=825139&view=rev
Log:
More updates for Windows builds

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/Thread.cpp
    activemq/activemq-cpp/trunk/activemq-cpp/vs2005-build/vs2005-activemq.vcproj

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/Thread.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/Thread.cpp?rev=825139&r1=825138&r2=825139&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/Thread.cpp (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/Thread.cpp Wed Oct 14 14:04:06 2009
@@ -621,7 +621,7 @@
         if( mills == 0 && nanos == 0 ) {
             thread->properties->mutex.wait();
         } else {
-            thread->properties->mutex.wait( mills, nanos );
+            thread->properties->mutex.wait( mills, (int)nanos );
         }
 
         thread->properties->parked = false;