From cb42582287de4c76f9c1e95e1e808143a2993e2c Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 5 Feb 2009 00:16:37 +0100 Subject: [PATCH] d3dx8/tests: Make compare() static. --- dlls/d3dx8/tests/mesh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3dx8/tests/mesh.c b/dlls/d3dx8/tests/mesh.c index 967f3c9c941..4dfa11fb8e8 100644 --- a/dlls/d3dx8/tests/mesh.c +++ b/dlls/d3dx8/tests/mesh.c @@ -22,7 +22,7 @@ #define admitted_error 0.0001f -BOOL compare(FLOAT u, FLOAT v) +static BOOL compare(FLOAT u, FLOAT v) { return (fabs(u-v) < admitted_error); }