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
Parts of code such as upsmon assume that time_t is an integer or wider (which TBH it often is, but is not guaranteed to by standard) and compare timeouts elapsing, etc. by direct arithmetics. The portable way is to use difftime() or some such standard routines.