Fixed LITTLE_ENDIAN_32_READ macro to at least compile.

This commit is contained in:
Marcus Meissner 2002-10-30 20:26:51 +00:00 committed by Alexandre Julliard
parent 9fc8b115c2
commit f99c03b972
1 changed files with 2 additions and 2 deletions

View File

@ -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
/*