Explorar el Código

avoid warning

Meco Man hace 4 años
padre
commit
9b428e519f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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
     {