Fixed compilation warning (C-style cast)

Former-commit-id: 063414bfd23047ce05010546f3cfe5188bd8e9b7
This commit is contained in:
Lynix 2013-06-15 16:11:37 +02:00
parent 54bc1d77fd
commit 8595a110a4
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@
* 64-bit words):
*/
#define ADDINC128(w,n) { \
(w)[0] += (nzUInt64)(n); \
(w)[0] += static_cast<nzUInt64>(n); \
if ((w)[0] < (n)) { \
(w)[1]++; \
} \