diff options
Diffstat (limited to 'protocols/CurrencyRates/src/Forex.cpp')
-rw-r--r-- | protocols/CurrencyRates/src/Forex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/CurrencyRates/src/Forex.cpp b/protocols/CurrencyRates/src/Forex.cpp index 3395c1e999..f36ecad292 100644 --- a/protocols/CurrencyRates/src/Forex.cpp +++ b/protocols/CurrencyRates/src/Forex.cpp @@ -230,7 +230,7 @@ void WaitForWorkingThreads() size_t cThreads = g_ahThreads.size(); if (cThreads > 0) { HANDLE* paHandles = &*(g_ahThreads.begin()); - ::WaitForMultipleObjects((DWORD)cThreads, paHandles, TRUE, INFINITE); + ::WaitForMultipleObjects((uint32_t)cThreads, paHandles, TRUE, INFINITE); } } |