i965: Fix shadowing of 'height' parameter
[mesa.git] / src / mesa / drivers / dri / i965 / intel_screen.c
index 19a66786e303b792f88f737dbe93f1392af363a0..4f14201aebf76805173d9a422d92a3464d8353fc 100644 (file)
@@ -732,8 +732,8 @@ intel_create_image_from_fds(__DRIscreen *screen,
       image->offsets[index] = offsets[index];
       image->strides[index] = strides[index];
 
-      const int height = height >> f->planes[i].height_shift;
-      const int end = offsets[index] + height * strides[index];
+      const int plane_height = height >> f->planes[i].height_shift;
+      const int end = offsets[index] + plane_height * strides[index];
       if (size < end)
          size = end;
    }