Meco Man 4 anni fa
parent
commit
9b428e519f
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      components/libc/compilers/common/time.c

+ 1 - 1
components/libc/compilers/common/time.c

@@ -329,7 +329,7 @@ int settimeofday(const struct timeval *tv, const struct timezone *tz)
 {
     if (tv != RT_NULL)
     {
-        return stime(&tv->tv_sec);
+        return stime((const time_t *)&tv->tv_sec);
     }
     else
     {