Francois Gouget : d3dx8/tests: Make compare_vec3() static.

Alexandre Julliard julliard at winehq.org
Wed May 13 10:19:44 CDT 2009


Module: wine
Branch: master
Commit: 46ec91210c0f405f4c6de7c03254157874b9a133
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=46ec91210c0f405f4c6de7c03254157874b9a133

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed May 13 10:35:56 2009 +0200

d3dx8/tests: Make compare_vec3() static.

---

 dlls/d3dx8/tests/mesh.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/d3dx8/tests/mesh.c b/dlls/d3dx8/tests/mesh.c
index c16ee15..04e8bf2 100644
--- a/dlls/d3dx8/tests/mesh.c
+++ b/dlls/d3dx8/tests/mesh.c
@@ -32,7 +32,7 @@ static BOOL compare(FLOAT u, FLOAT v)
     return (fabs(u-v) < admitted_error);
 }
 
-BOOL compare_vec3(D3DXVECTOR3 u, D3DXVECTOR3 v)
+static BOOL compare_vec3(D3DXVECTOR3 u, D3DXVECTOR3 v)
 {
     return ( compare(u.x, v.x) && compare(u.y, v.y) && compare(u.z, v.z) );
 }




More information about the wine-cvs mailing list