Zebediah Figura : ntdll: Remove extraneous newline from debugstr_ObjectAttributes().
Module: wine Branch: master Commit: 4cb95848fd0de6d96e246bfa2633236cafc43873 URL: https://source.winehq.org/git/wine.git/?a=commit;h=4cb95848fd0de6d96e246bfa2... Author: Zebediah Figura <z.figura12(a)gmail.com> Date: Mon May 18 15:59:23 2020 -0500 ntdll: Remove extraneous newline from debugstr_ObjectAttributes(). Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/ntdll/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/misc.c b/dlls/ntdll/misc.c index fd9ba49113..3336d6390f 100644 --- a/dlls/ntdll/misc.c +++ b/dlls/ntdll/misc.c @@ -37,7 +37,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(ntdll); LPCSTR debugstr_ObjectAttributes(const OBJECT_ATTRIBUTES *oa) { if (!oa) return "<null>"; - return wine_dbg_sprintf( "{name=%s, attr=0x%08x, hRoot=%p, sd=%p}\n", + return wine_dbg_sprintf( "{name=%s, attr=0x%08x, hRoot=%p, sd=%p}", debugstr_us(oa->ObjectName), oa->Attributes, oa->RootDirectory, oa->SecurityDescriptor ); }
participants (1)
-
Alexandre Julliard