d3dx9_36: Add a trailing '\n' to a TRACE().

Francois Gouget fgouget at free.fr
Thu Apr 18 11:58:27 CDT 2013


---
 dlls/d3dx9_36/math.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/d3dx9_36/math.c b/dlls/d3dx9_36/math.c
index 207d152..b60cb89 100644
--- a/dlls/d3dx9_36/math.c
+++ b/dlls/d3dx9_36/math.c
@@ -1793,7 +1793,7 @@ D3DXVECTOR2* WINAPI D3DXVec2TransformNormal(D3DXVECTOR2 *pout, const D3DXVECTOR2
 {
     const D3DXVECTOR2 v = *pv;
 
-    TRACE("pout %p, pv %p, pm %p", pout, pv, pm);
+    TRACE("pout %p, pv %p, pm %p\n", pout, pv, pm);
 
     pout->x = pm->u.m[0][0] * v.x + pm->u.m[1][0] * v.y;
     pout->y = pm->u.m[0][1] * v.x + pm->u.m[1][1] * v.y;
-- 
1.7.10.4



More information about the wine-patches mailing list