Closed nlewycky closed 2 years ago
Somehow, on my system uint64 from port.h and uint64_t are typedefs of two different 64-bit types, unsigned long and unsigned long long.
uint64
uint64_t
unsigned long
unsigned long long
For the most part this difference would be invisible, however when passing by pointer the pointer must point to the correct type.
No functionality change.
Somehow, on my system
uint64
from port.h anduint64_t
are typedefs of two different 64-bit types,unsigned long
andunsigned long long
.For the most part this difference would be invisible, however when passing by pointer the pointer must point to the correct type.
No functionality change.