Module: wine Branch: master Commit: e0711b195df4373bca20a799348ddf16f9543950 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e0711b195df4373bca20a79934...
Author: Francois Gouget fgouget@free.fr Date: Sun Jul 17 10:18:04 2011 +0200
d3dx9_36: Add a trailing '\n' to an ERR() call.
---
dlls/d3dx9_36/mesh.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3dx9_36/mesh.c b/dlls/d3dx9_36/mesh.c index 717c356..94a291f 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; }