You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
timegm and mktime are declared to return a time_t value. In our case, time_t is an unsigned long long. However, these functions return -1 on failure, which can be error-prone.
The text was updated successfully, but these errors were encountered:
timegm
andmktime
are declared to return atime_t
value. In our case,time_t
is an unsigned long long. However, these functions return -1 on failure, which can be error-prone.The text was updated successfully, but these errors were encountered: