blob: 77c162a983d6d3c337d085126ce7f66cf85dbaa4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- Fix i386 build.
--- packages/external/JEGA/eddy/threads/src/thread.cpp.orig 2021-03-01 17:15:15 UTC
+++ packages/external/JEGA/eddy/threads/src/thread.cpp
@@ -152,7 +152,7 @@ thread::sleep(
)
{
struct timespec ts = {
- msecs/1000, static_cast<long>((msecs%1000)*1000000)
+ time_t(msecs/1000), static_cast<long>((msecs%1000)*1000000)
};
#if defined(EDDY_WINDOWS)
|