mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Added explicit casts to prevent compiler warnings when trying to build for iOS
This commit is contained in:
committed by
Manuel Pégourié-Gonnard
parent
8ef7088bb9
commit
ef5087d150
@ -833,8 +833,8 @@
|
||||
|
||||
#define MULADDC_CORE \
|
||||
r = *(s++) * (t_udbl) b; \
|
||||
r0 = r; \
|
||||
r1 = r >> biL; \
|
||||
r0 = (t_uint) r; \
|
||||
r1 = (t_uint)( r >> biL ); \
|
||||
r0 += c; r1 += (r0 < c); \
|
||||
r0 += *d; r1 += (r0 < *d); \
|
||||
c = r1; *(d++) = r0;
|
||||
|
Reference in New Issue
Block a user