Commit 464110b1 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

d3drm/tests: Use BOOL type where appropriate.

parent 84fb23f4
...@@ -28,14 +28,15 @@ ...@@ -28,14 +28,15 @@
#define expect_mat( expectedmat, gotmat)\ #define expect_mat( expectedmat, gotmat)\
{ \ { \
int i,j,equal=1; \ int i,j; \
BOOL equal = TRUE; \
for (i=0; i<4; i++)\ for (i=0; i<4; i++)\
{\ {\
for (j=0; j<4; j++)\ for (j=0; j<4; j++)\
{\ {\
if (fabs(expectedmat[i][j]-gotmat[i][j])>admit_error)\ if (fabs(expectedmat[i][j]-gotmat[i][j])>admit_error)\
{\ {\
equal=0;\ equal = FALSE;\
}\ }\
}\ }\
}\ }\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment