changeset 32916:5fdd52feb5ea

Use appropriate declaration for array indices.
author ib
date Wed, 02 Mar 2011 17:42:06 +0000
parents 0cd5c0498962
children 9949f3a123cf
files gui/bitmap.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gui/bitmap.c	Wed Mar 02 17:38:59 2011 +0000
+++ b/gui/bitmap.c	Wed Mar 02 17:42:06 2011 +0000
@@ -120,7 +120,7 @@
 static int conv24to32(txSample *bf)
 {
     unsigned char *tmpImage;
-    int i, c;
+    unsigned int i, c;
 
     if (bf->BPP == 24) {
         tmpImage      = bf->Image;