Fix stupid clone of broken macro, found by Marcus.

This commit is contained in:
Greg Turner 2002-11-01 01:47:04 +00:00 committed by Alexandre Julliard
parent 582b744e43
commit d4730de333
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
#define BIG_ENDIAN_UINT32_READ(pchar) \
(MAKELONG( \
MAKEWORD(*((pchar)+3), *((pchar)+2)) \
MAKEWORD(*((pchar)+3), *((pchar)+2)), \
MAKEWORD(*((pchar)+1), *(pchar))))
#ifdef NDR_LOCAL_IS_BIG_ENDIAN