winex11.drv: Move the TRACE before the return. Found by Smatch.

This commit is contained in:
Michael Stefaniuc 2007-08-04 00:56:50 +02:00 committed by Alexandre Julliard
parent 66d27c2b08
commit 0bd2548bbf
1 changed files with 1 additions and 1 deletions

View File

@ -1259,8 +1259,8 @@ int X11DRV_GetPixelFormat(X11DRV_PDEVICE *physDev) {
return 1;
}
return physDev->current_pf;
TRACE("(%p): returns %d\n", physDev, physDev->current_pf);
return physDev->current_pf;
}
/**