From fd9b30750a0690a1fd13fcddb9141cdcaa61b117 Mon Sep 17 00:00:00 2001 From: Daniel Borca Date: Mon, 15 Nov 2004 08:03:22 +0000 Subject: use parentheses to avoid warning --- src/mesa/main/attrib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/main/attrib.c') diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 658b4ba013..5cdf72c4f5 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1079,7 +1079,7 @@ _mesa_PopAttrib(void) stencil->ZFailFunc[face], stencil->ZPassFunc[face]); face ^= 1; - } while (face != stencil->ActiveFace ^ 1); + } while (face != (stencil->ActiveFace ^ 1)); } break; case GL_TRANSFORM_BIT: -- cgit v1.2.3