summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/csw_cas.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-07-31 16:47:26 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-07-31 16:47:26 +0200
commitf127621e13050aad6b455ebfadec5bfdcbdd00d4 (patch)
tree0601ca3093ab58610f108f93167d344151b2d4e5 /src/lib/formats/csw_cas.cpp
parenteaa70ae0313eb1135ba63814f07f7e22c766a504 (diff)
made constexprs lower case and used constexpr for returning input value as well for rest of defines in osdcomm.h (nw)
Diffstat (limited to 'src/lib/formats/csw_cas.cpp')
-rw-r--r--src/lib/formats/csw_cas.cpp2
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;