Module: wine Branch: master Commit: cb42582287de4c76f9c1e95e1e808143a2993e2c URL: http://source.winehq.org/git/wine.git/?a=commit;h=cb42582287de4c76f9c1e95e1e...
Author: Francois Gouget fgouget@free.fr Date: Thu Feb 5 00:16:37 2009 +0100
d3dx8/tests: Make compare() 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 967f3c9..4dfa11f 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); }