summaryrefslogtreecommitdiff
path: root/hv_macro.h
diff options
context:
space:
mode:
Diffstat (limited to 'hv_macro.h')
-rw-r--r--hv_macro.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hv_macro.h b/hv_macro.h
index 3f75cdb860..c052653c35 100644
--- a/hv_macro.h
+++ b/hv_macro.h
@@ -30,7 +30,7 @@
*/
#ifndef U8TO16_LE
- #define _shifted_octet(type,ptr,idx,shift) (((type)(((U8*)(ptr))[(idx)]))<<(shift))
+ #define _shifted_octet(type,ptr,idx,shift) (((type)(((const U8*)(ptr))[(idx)]))<<(shift))
#if defined(USE_UNALIGNED_PTR_DEREF) && (BYTEORDER == 0x1234 || BYTEORDER == 0x12345678)
#define U8TO16_LE(ptr) (*((const U16*)(ptr)))
#define U8TO32_LE(ptr) (*((const U32*)(ptr)))