mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
cmd_date: Fix spelling in error message.
Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
This commit is contained in:
parent
c253122395
commit
d52e3e0176
1 changed files with 3 additions and 3 deletions
|
@ -71,9 +71,9 @@ int do_date (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
||||||
/* and write to RTC */
|
/* and write to RTC */
|
||||||
rcode = rtc_set (&tm);
|
rcode = rtc_set (&tm);
|
||||||
if(rcode)
|
if(rcode)
|
||||||
puts("## Set date failled\n");
|
puts("## Set date failed\n");
|
||||||
} else {
|
} else {
|
||||||
puts("## Get date failled\n");
|
puts("## Get date failed\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* FALL TROUGH */
|
/* FALL TROUGH */
|
||||||
|
@ -81,7 +81,7 @@ int do_date (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
||||||
rcode = rtc_get (&tm);
|
rcode = rtc_get (&tm);
|
||||||
|
|
||||||
if (rcode) {
|
if (rcode) {
|
||||||
puts("## Get date failled\n");
|
puts("## Get date failed\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue