COMMON: Fix return type of one READ_BE_UINT64 implementation.

This makes all unit tests pass for my on amd64 again. Thanks clone2727.
This commit is contained in:
Johannes Schickel 2015-01-04 21:30:05 +01:00
parent ba228f2bea
commit e2e61184c6

View File

@ -476,7 +476,7 @@
WRITE_UINT32(ptr, SWAP_BYTES_32(value));
}
#ifdef HAVE_INT64
inline uint32 READ_BE_UINT64(const void *ptr) {
inline uint64 READ_BE_UINT64(const void *ptr) {
return SWAP_BYTES_64(READ_UINT64(ptr));
}
inline void WRITE_BE_UINT64(void *ptr, uint64 value) {