Merge pull request #3784 from zhiweih/patch-1

Specify date string length in FINSH date command.
This commit is contained in:
Bernard Xiong 2020-07-28 09:42:50 +08:00 committed by GitHub
commit 8ecea29bd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ void list_date(void)
time_t now;
now = time(RT_NULL);
rt_kprintf("%s\n", ctime(&now));
rt_kprintf("%.*s\n", 25, ctime(&now));
}
FINSH_FUNCTION_EXPORT(list_date, show date and time.)
@ -194,7 +194,7 @@ static void date(uint8_t argc, char **argv)
time_t now;
/* output current time */
now = time(RT_NULL);
rt_kprintf("%s", ctime(&now));
rt_kprintf("%.*s", 25, ctime(&now));
}
else if (argc >= 7)
{