From e0711b195df4373bca20a799348ddf16f9543950 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sun, 17 Jul 2011 10:18:04 +0200 Subject: [PATCH] d3dx9_36: Add a trailing '\n' to an ERR() call. --- dlls/d3dx9_36/mesh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3dx9_36/mesh.c b/dlls/d3dx9_36/mesh.c index 717c356f12a..94a291f2fb9 100644 --- a/dlls/d3dx9_36/mesh.c +++ b/dlls/d3dx9_36/mesh.c @@ -534,7 +534,7 @@ static HRESULT WINAPI ID3DXMeshImpl_ConvertAdjacencyToPointReps(ID3DXMesh *iface /* Should never happen as CreateMesh does not allow meshes with 0 faces */ if (This->numfaces == 0) { - ERR("Number of faces was zero."); + ERR("Number of faces was zero.\n"); hr = D3DERR_INVALIDCALL; goto cleanup; }