From 5ee7973b9cce58bb531ede5ec6a865b298651669 Mon Sep 17 00:00:00 2001 From: Ho Hang Date: Mon, 29 Mar 2021 12:46:03 +0800 Subject: [PATCH] update shell/full/src/cmds/date_shell.c. --- shell/full/src/cmds/date_shell.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell/full/src/cmds/date_shell.c b/shell/full/src/cmds/date_shell.c index b16bc3b5..ca5f5b88 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; }