mesa: use ARRAY_SIZE in _mesa_QueryMatrixxOES()
authorBrian Paul <brianp@vmware.com>
Sat, 7 Mar 2015 20:15:22 +0000 (13:15 -0700)
committerBrian Paul <brianp@vmware.com>
Thu, 12 Mar 2015 13:52:45 +0000 (07:52 -0600)
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/main/querymatrix.c

index ccd5c5e990470e1ed8207fa9e4ac59fbe0bf9523..18361c929fb5d2627bbd6112c98f7b6ec2eb73f3 100644 (file)
@@ -75,7 +75,7 @@ _mesa_QueryMatrixxOES(GLfixed mantissa[16], GLint exponent[16])
     * we can return immediately, as _mesa_GetInteger() will have
     * logged the necessary error already.
     */
-   for (i = 0; i < sizeof(modes)/sizeof(modes[0]); i++) {
+   for (i = 0; i < ARRAY_SIZE(modes); i++) {
       if (modes[i].currentMode == currentMode) {
          desiredMatrix = modes[i].desiredMatrix;
          break;