summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--opengl/tests/hwc/hwcTestLib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/tests/hwc/hwcTestLib.cpp b/opengl/tests/hwc/hwcTestLib.cpp
index b790c513d0..a468a9219a 100644
--- a/opengl/tests/hwc/hwcTestLib.cpp
+++ b/opengl/tests/hwc/hwcTestLib.cpp
@@ -719,7 +719,7 @@ void hwcTestFillColorHBlend(GraphicBuffer *gBuf, uint32_t colorFormat,
pixel = testRand();
}
- for (unsigned int y = 0; y <= height; y++) {
+ for (unsigned int y = 0; y < height; y++) {
hwcTestSetPixel(gBuf, buf, x, y, pixel);
}
}