Changeset 886

Show
Ignore:
Timestamp:
08/03/08 04:44:22 (4 months ago)
Author:
michael
Message:

signed/unsigned mismatch

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/drv_IRLCD.c

    r884 r886  
    192192static void drv_IRLCD_clear(void) 
    193193{ 
    194     char cmd[1]; 
     194    unsigned char cmd[1]; 
    195195 
    196196    cmd[0] = 0x01;    /* clear */ 
     
    204204static void drv_IRLCD_write(const int row, const int col, const char *data, int len) 
    205205{ 
    206     char cmd[1]; 
     206    unsigned char cmd[1]; 
    207207    static int pos; 
    208208 
     
    224224static void drv_IRLCD_defchar(const int ascii, const unsigned char *matrix) 
    225225{ 
    226     char cmd[10]; 
     226    unsigned char cmd[10]; 
    227227    int i; 
    228228