Commit f99c03b9 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Fixed LITTLE_ENDIAN_32_READ macro to at least compile.

parent 9fc8b115
......@@ -59,8 +59,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
#define LITTLE_ENDIAN_32_READ(pchar) \
(MAKELONG( \
MAKEWORD(*(pchar), *((pchar)+1)) \
MAKEWORD(*((pchar)+2), *((pchar)+3)))
MAKEWORD(*(pchar), *((pchar)+1)), \
MAKEWORD(*((pchar)+2), *((pchar)+3))))
#endif
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment