apparently char is unsigned by default on my compiler

SVN revision: 8566
This commit is contained in:
atmosphere 2004-01-19 19:28:38 +00:00 committed by atmosphere
parent 500ef41c6d
commit b29897bd7d
1 changed files with 1 additions and 1 deletions

View File

@ -524,7 +524,7 @@ struct _Edje_Text_Style
int num;
struct {
unsigned char color; /* 0 = color, 1, 2 = color2, color3 */
char x, y; /* offset */
signed char x, y; /* offset */
unsigned char alpha;
} members[32];
};