summaryrefslogtreecommitdiff
path: root/src/mesa/main/debug.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-06-08 16:29:46 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-06-08 16:56:41 +0100
commite09f78d8dc7f20bb11f84206b6f1d71418332d8a (patch)
tree9ff7fa1dc32b57e6928a6417ee3a6436a3992162 /src/mesa/main/debug.c
parent42678dba941b5a734e6aa03b530653d9c5341a70 (diff)
mesa: Use matching signedness for the counter as upper bound.
Diffstat (limited to 'src/mesa/main/debug.c')
-rw-r--r--src/mesa/main/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c
index 2eabcdaf49..b54e47919d 100644
--- a/src/mesa/main/debug.c
+++ b/src/mesa/main/debug.c
@@ -282,7 +282,7 @@ write_texture_image(struct gl_texture_object *texObj)
case MESA_FORMAT_RGB565:
{
GLubyte *buf2 = (GLubyte *) _mesa_malloc(img->Width * img->Height * 3);
- GLint i;
+ GLuint i;
for (i = 0; i < img->Width * img->Height; i++) {
GLint r, g, b;
GLushort s = ((GLushort *) img->Data)[i];