diff options
Diffstat (limited to 'src/lib/formats/csw_cas.cpp')
-rw-r--r-- | src/lib/formats/csw_cas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/csw_cas.cpp b/src/lib/formats/csw_cas.cpp index 336a9dde7cd..f2523ef839d 100644 --- a/src/lib/formats/csw_cas.cpp +++ b/src/lib/formats/csw_cas.cpp @@ -38,7 +38,7 @@ static UINT32 get_leuint32(const void *ptr) { UINT32 value; memcpy(&value, ptr, sizeof(value)); - return LITTLE_ENDIANIZE_INT32(value); + return little_endianize_int32(value); } static int mycaslen; |