Module: wine Branch: master Commit: 75e5fb933a04d8ed871544510cdb68ff687d149e URL: http://source.winehq.org/git/wine.git/?a=commit;h=75e5fb933a04d8ed871544510c...
Author: Francois Gouget fgouget@free.fr Date: Mon Apr 30 02:06:46 2007 +0200
d3drm/tests: Add missing '\n' to ok() calls.
---
dlls/d3drm/tests/vector.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/d3drm/tests/vector.c b/dlls/d3drm/tests/vector.c index 1c25c50..cc16a05 100644 --- a/dlls/d3drm/tests/vector.c +++ b/dlls/d3drm/tests/vector.c @@ -89,11 +89,11 @@ static void VectorTest(void)
/*_______________________VectorDotProduct__________________________*/ mod=D3DRMVectorDotProduct(&u,&v); - ok((mod == 16.0), "Expected 16.0, Got %f",mod); + ok((mod == 16.0), "Expected 16.0, Got %f\n",mod);
/*_______________________VectorModulus_____________________________*/ mod=D3DRMVectorModulus(&u); - ok((mod == 3.0), "Expected 3.0, Got %f",mod); + ok((mod == 3.0), "Expected 3.0, Got %f\n",mod);
/*_______________________VectorNormalize___________________________*/ D3DRMVectorNormalize(&u);