From a46d4057787ff1a9ea7a2817fd4beb9d3e6627ba Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 26 May 2010 17:49:37 +0000 Subject: [PATCH] DWORD is unsigned long, not unsigned int. Refs #4217. [SVN r62246] --- include/boost/smart_ptr/detail/yield_k.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/smart_ptr/detail/yield_k.hpp b/include/boost/smart_ptr/detail/yield_k.hpp index a956cc0..23eadd8 100644 --- a/include/boost/smart_ptr/detail/yield_k.hpp +++ b/include/boost/smart_ptr/detail/yield_k.hpp @@ -55,7 +55,7 @@ namespace detail { #if !defined( BOOST_USE_WINDOWS_H ) - extern "C" void __stdcall Sleep( unsigned ms ); + extern "C" void __stdcall Sleep( unsigned long ms ); #endif inline void yield( unsigned k )