Skip to content
Snippets Groups Projects
Commit fc19e36f authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Fix warning differ in signedness in board/mpl/vcma9/vcma9.c

parent b0058381
No related branches found
No related tags found
No related merge requests found
...@@ -288,7 +288,7 @@ int dram_init(void) ...@@ -288,7 +288,7 @@ int dram_init(void)
int checkboard(void) int checkboard(void)
{ {
unsigned char s[50]; char s[50];
int i; int i;
backup_t *b = (backup_t *) s; backup_t *b = (backup_t *) s;
...@@ -337,7 +337,7 @@ int overwrite_console(void) ...@@ -337,7 +337,7 @@ int overwrite_console(void)
************************************************************************/ ************************************************************************/
void print_vcma9_info(void) void print_vcma9_info(void)
{ {
unsigned char s[50]; char s[50];
int i; int i;
if ((i = getenv_r("serial#", s, 32)) < 0) { if ((i = getenv_r("serial#", s, 32)) < 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment