ole32: Fix build on Power PC.

This commit is contained in:
Austin English 2009-08-31 22:22:13 -05:00 committed by Alexandre Julliard
parent e7bbc32bd1
commit f8daa90284
1 changed files with 1 additions and 1 deletions

View File

@ -977,7 +977,7 @@ static void PropertyStorage_ByteSwapString(LPWSTR str, size_t len)
* FIXME: alignment?
*/
for (i = 0; i < len; i++)
str[i] = le16toh(str[i]);
str[i] = lendian16toh(str[i]);
}
#else
#define PropertyStorage_ByteSwapString(s, l)