[MIPS] gth2.c: Fix a warning on gth2 build.
gth2.c: In function 'misc_init_r': gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
This commit is contained in:
parent
4fbd0741b2
commit
f5e429d386
board/gth2
|
@ -431,7 +431,7 @@ int misc_init_r(void){
|
||||||
(Rx[8] != ':') | (Rx[11] != ':') | (Rx[14] != ':')) {
|
(Rx[8] != ':') | (Rx[11] != ':') | (Rx[14] != ':')) {
|
||||||
printf ("*** ethernet addr invalid, using default ***\n");
|
printf ("*** ethernet addr invalid, using default ***\n");
|
||||||
} else {
|
} else {
|
||||||
setenv ("ethaddr", Rx);
|
setenv ("ethaddr", (char *)Rx);
|
||||||
}
|
}
|
||||||
return (0);
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue