From d92f8a53da900f4c03dd8c5c0b8163a03a72a9df Mon Sep 17 00:00:00 2001 From: Meco Man <920369182@qq.com> Date: Sun, 7 Feb 2021 22:25:30 +0800 Subject: [PATCH] update --- components/libc/compilers/common/time.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/libc/compilers/common/time.c b/components/libc/compilers/common/time.c index ad167a85c7..d7f239bea1 100644 --- a/components/libc/compilers/common/time.c +++ b/components/libc/compilers/common/time.c @@ -213,13 +213,13 @@ RT_WEAK clock_t clock(void) /* TODO: timezone */ int gettimeofday(struct timeval *tp, struct timezone *tz) { - time_t time = time(NULL); + time_t t = time(RT_NULL); if (tp != RT_NULL) { - tp->tv_sec = time; + tp->tv_sec = t; tp->tv_usec = 0; } - return time; + return 0; } time_t timegm(struct tm * const t) -- GitLab