From db6aa58267cad3f502f03ab80b9deb6b75320a91 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 10 Nov 2000 17:23:02 +0000 Subject: patched to silence compiler warnings (Martin Lindhe) --- progs/redbook/wrap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'progs/redbook/wrap.c') diff --git a/progs/redbook/wrap.c b/progs/redbook/wrap.c index c67e04a7f3..f9a1f162ab 100644 --- a/progs/redbook/wrap.c +++ b/progs/redbook/wrap.c @@ -65,7 +65,7 @@ void makeCheckImage(void) for (i = 0; i < checkImageHeight; i++) { for (j = 0; j < checkImageWidth; j++) { - c = ((((i&0x8)==0)^((j&0x8))==0))*255; + c = (((i&0x8)==0)^((j&0x8)==0))*255; checkImage[i][j][0] = (GLubyte) c; checkImage[i][j][1] = (GLubyte) c; checkImage[i][j][2] = (GLubyte) c; -- cgit v1.2.3