From: Nikolay Sivov Subject: [PATCH] secur32: Trace flags in hex in InitializeSecurityContextW() Message-Id: <20161210202120.28592-1-nsivov@codeweavers.com> Date: Sat, 10 Dec 2016 23:21:20 +0300 Signed-off-by: Nikolay Sivov --- InitializeSecurityContextA already does that dlls/secur32/wrapper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/secur32/wrapper.c b/dlls/secur32/wrapper.c index dabd90f..06a3674 100644 --- a/dlls/secur32/wrapper.c +++ b/dlls/secur32/wrapper.c @@ -315,7 +315,7 @@ SECURITY_STATUS WINAPI InitializeSecurityContextW( PCredHandle cred = NULL; PCredHandle ctxt = NULL; - TRACE("%p %p %s %d %d %d %p %d %p %p %p %p\n", phCredential, phContext, + TRACE("%p %p %s 0x%08x %d %d %p %d %p %p %p %p\n", phCredential, phContext, debugstr_w(pszTargetName), fContextReq, Reserved1, TargetDataRep, pInput, Reserved1, phNewContext, pOutput, pfContextAttr, ptsExpiry); -- 2.10.2