d3drm/tests: Use BOOL type where appropriate.

oldstable
Frédéric Delanoy 2013-11-07 21:47:32 +01:00 committed by Alexandre Julliard
parent 84fb23f476
commit 464110b1cb
1 changed files with 3 additions and 2 deletions

View File

@ -28,14 +28,15 @@
#define expect_mat( expectedmat, gotmat)\
{ \
int i,j,equal=1; \
int i,j; \
BOOL equal = TRUE; \
for (i=0; i<4; i++)\
{\
for (j=0; j<4; j++)\
{\
if (fabs(expectedmat[i][j]-gotmat[i][j])>admit_error)\
{\
equal=0;\
equal = FALSE;\
}\
}\
}\