Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Hughes <khughes@pacific.edu>2007-03-17 17:43:52 +0300
committerKen Hughes <khughes@pacific.edu>2007-03-17 17:43:52 +0300
commit8e43b3f950430d345e35d7643faaaf4b6122c961 (patch)
treecef0b06e7df5579293f33d0d06bc075868c20834 /source/blender/src/interface_icons.c
parent4e72e4ad2bf39bc9bb4209b4b2d0fae99127a3d9 (diff)
More fix various gcc warning, mainly related to signed/unsigned parameters
passed in general.
Diffstat (limited to 'source/blender/src/interface_icons.c')
-rw-r--r--source/blender/src/interface_icons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/interface_icons.c b/source/blender/src/interface_icons.c
index e400ca9af74..d257f2f37f8 100644
--- a/source/blender/src/interface_icons.c
+++ b/source/blender/src/interface_icons.c
@@ -500,7 +500,7 @@ static void clear_icon_grid_margins(unsigned char *rect, int w, int h)
static void prepare_internal_icons(ImBuf *bbuf)
{
- char *back= (char *)bbuf->rect;
+ unsigned char *back= (unsigned char *)bbuf->rect;
/* this sets the icon grid margin area outside of icon to zero alpha */
clear_icon_grid_margins(back, bbuf->x, bbuf->y);