diff --git a/shell/full/src/cmds/date_shell.c b/shell/full/src/cmds/date_shell.c index b16bc3b592c998e5b8c791c0e12c8ea720afedb2..ca5f5b88fe6d2b33d394b6a8dcc83f7474be73d6 100644 --- a/shell/full/src/cmds/date_shell.c +++ b/shell/full/src/cmds/date_shell.c @@ -153,7 +153,7 @@ STATIC INT32 OsStrToTm(const CHAR *str, struct tm *tm) } if (tm->tm_year < 70) { /* 70:the year is starting in 1970,tm_year must be greater than 70 */ - PRINTK("\nUsage: date -s set system time range from 1970.\n"); + PRINTK("\nUsage: date -s set system time starting from 1970.\n"); return DATE_ERR; } @@ -202,7 +202,7 @@ STATIC INT32 OsDateSetTime(const CHAR *timeStr) struct timeval64 setTime = {0}; if (gettimeofday64(&nowTime, NULL)) { - PRINTK("settime failed...\n"); + PRINTK("Setting time failed...\n"); return DATE_ERR; } @@ -217,7 +217,7 @@ STATIC INT32 OsDateSetTime(const CHAR *timeStr) setTime.tv_sec = mktime64(&tm); if (settimeofday64(&setTime, NULL)) { - PRINTK("settime failed...\n"); + PRINTK("setting time failed...\n"); return DATE_ERR; }