From af5cee18624482b5d184a18cb24f06605c9eaaa5 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Sun, 14 Oct 2012 10:27:22 -0400 Subject: [PATCH] ole32: Fix debug output for user marshal flags. --- dlls/ole32/usrmarshal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/ole32/usrmarshal.c b/dlls/ole32/usrmarshal.c index 8f5feef078d..d1f56c7983d 100644 --- a/dlls/ole32/usrmarshal.c +++ b/dlls/ole32/usrmarshal.c @@ -74,9 +74,9 @@ static const char* debugstr_user_flags(ULONG *pFlags) } if (HIWORD(*pFlags) == NDR_LOCAL_DATA_REPRESENTATION) - return wine_dbg_sprintf("MAKELONG(NDR_LOCAL_REPRESENTATION, %s)", loword); + return wine_dbg_sprintf("MAKELONG(%s, NDR_LOCAL_DATA_REPRESENTATION)", loword); else - return wine_dbg_sprintf("MAKELONG(0x%04x, %s)", HIWORD(*pFlags), loword); + return wine_dbg_sprintf("MAKELONG(%s, 0x%04x)", loword, HIWORD(*pFlags)); } /****************************************************************************** -- 2.11.4.GIT