4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-20 22:17:20 +08:00

2 spaces -> 4 spaces

This commit is contained in:
Meco Man 2021-02-11 02:46:23 +08:00
parent d67d4d3fd0
commit e3fee1ca77

View File

@ -155,8 +155,8 @@ char* asctime(const struct tm *timeptr)
char *ctime_r (const time_t * tim_p, char * result)
{
struct tm tm;
return asctime_r (localtime_r (tim_p, &tm), result);
struct tm tm;
return asctime_r (localtime_r (tim_p, &tm), result);
}
char* ctime(const time_t *tim_p)