From 0bd2548bbf2edebf963d06d88b0de26650e7f361 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Sat, 4 Aug 2007 00:56:50 +0200 Subject: [PATCH] winex11.drv: Move the TRACE before the return. Found by Smatch. --- dlls/winex11.drv/opengl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winex11.drv/opengl.c b/dlls/winex11.drv/opengl.c index 806f7e9bd2a..91acd3b5cb7 100644 --- a/dlls/winex11.drv/opengl.c +++ b/dlls/winex11.drv/opengl.c @@ -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; } /**