diff options
author | Wolfgang Denk <wd@denx.de> | 2007-10-13 23:51:14 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-10-13 23:51:14 +0200 |
commit | fc19e36f741e8bc727c0a330170b3b5db90399ef (patch) | |
tree | 8105abb90f55ff1560f6846995f5782429831c95 /board/mpl | |
parent | b00583813214657696b0bbb756fa102b2e5cdccd (diff) |
Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/mpl')
-rw-r--r-- | board/mpl/vcma9/vcma9.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/mpl/vcma9/vcma9.c b/board/mpl/vcma9/vcma9.c index 45ab6548f60..a4c463a3144 100644 --- a/board/mpl/vcma9/vcma9.c +++ b/board/mpl/vcma9/vcma9.c @@ -288,7 +288,7 @@ int dram_init(void) int checkboard(void) { - unsigned char s[50]; + char s[50]; int i; backup_t *b = (backup_t *) s; @@ -337,7 +337,7 @@ int overwrite_console(void) ************************************************************************/ void print_vcma9_info(void) { - unsigned char s[50]; + char s[50]; int i; if ((i = getenv_r("serial#", s, 32)) < 0) { |