mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
Bugfix for TRACE in UnregisterClass.
This commit is contained in:
parent
6fbe079393
commit
4e700ab90e
1 changed files with 2 additions and 2 deletions
|
@ -664,7 +664,7 @@ BOOL WINAPI UnregisterClassA( LPCSTR className, HINSTANCE hInstance )
|
|||
ATOM atom;
|
||||
BOOL ret;
|
||||
|
||||
TRACE(class,"%s %x\n",className, hInstance);
|
||||
TRACE(class,"%s %x\n",debugres_a(className), hInstance);
|
||||
|
||||
if (!(atom = GlobalFindAtomA( className )))
|
||||
{
|
||||
|
@ -690,7 +690,7 @@ BOOL WINAPI UnregisterClassW( LPCWSTR className, HINSTANCE hInstance )
|
|||
ATOM atom;
|
||||
BOOL ret;
|
||||
|
||||
TRACE(class,"%s %x\n",debugstr_w(className), hInstance);
|
||||
TRACE(class,"%s %x\n",debugres_w(className), hInstance);
|
||||
|
||||
if (!(atom = GlobalFindAtomW( className )))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue