Commit 4e700ab9 authored by Huw D M Davies's avatar Huw D M Davies Committed by Alexandre Julliard

Bugfix for TRACE in UnregisterClass.

parent 6fbe0793
...@@ -664,7 +664,7 @@ BOOL WINAPI UnregisterClassA( LPCSTR className, HINSTANCE hInstance ) ...@@ -664,7 +664,7 @@ BOOL WINAPI UnregisterClassA( LPCSTR className, HINSTANCE hInstance )
ATOM atom; ATOM atom;
BOOL ret; BOOL ret;
TRACE(class,"%s %x\n",className, hInstance); TRACE(class,"%s %x\n",debugres_a(className), hInstance);
if (!(atom = GlobalFindAtomA( className ))) if (!(atom = GlobalFindAtomA( className )))
{ {
...@@ -690,7 +690,7 @@ BOOL WINAPI UnregisterClassW( LPCWSTR className, HINSTANCE hInstance ) ...@@ -690,7 +690,7 @@ BOOL WINAPI UnregisterClassW( LPCWSTR className, HINSTANCE hInstance )
ATOM atom; ATOM atom;
BOOL ret; BOOL ret;
TRACE(class,"%s %x\n",debugstr_w(className), hInstance); TRACE(class,"%s %x\n",debugres_w(className), hInstance);
if (!(atom = GlobalFindAtomW( className ))) if (!(atom = GlobalFindAtomW( className )))
{ {
......
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