Commit d4730de3 authored by Greg Turner's avatar Greg Turner Committed by Alexandre Julliard

Fix stupid clone of broken macro, found by Marcus.

parent 582b744e
......@@ -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
......
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