Fixed compile error on Windows caused by arithmetic with void * pointers

(issue #16685).
This commit is contained in:
Serhiy Storchaka 2013-11-11 07:47:35 +02:00
parent 9d5c071060
commit 23a7827c45
1 changed files with 3 additions and 3 deletions

View File

@ -287,9 +287,9 @@ static int stepsizeTable[89] = {
15289, 16818, 18500, 20350, 22385, 24623, 27086, 29794, 32767
};
#define GETINTX(T, cp, i) (*(T *)((cp) + (i)))
#define GETINTX(T, cp, i) (*(T *)((unsigned char *)(cp) + (i)))
#define SETINTX(T, cp, i, val) do { \
*(T *)((cp) + (i)) = (T)(val); \
*(T *)((unsigned char *)(cp) + (i)) = (T)(val); \
} while (0)