mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-13 07:28:59 +01:00
Don't overflow integer on 32-bit machines.
This was causing test_bitcoin to abort on a 32-bit system likely due to -ftrapv.
This commit is contained in:
@@ -288,7 +288,7 @@ inline int64 GetPerformanceCounter()
|
|||||||
#else
|
#else
|
||||||
timeval t;
|
timeval t;
|
||||||
gettimeofday(&t, NULL);
|
gettimeofday(&t, NULL);
|
||||||
nCounter = t.tv_sec * 1000000 + t.tv_usec;
|
nCounter = (int64) t.tv_sec * 1000000 + t.tv_usec;
|
||||||
#endif
|
#endif
|
||||||
return nCounter;
|
return nCounter;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user