On Thursday, 3 March 2022 18:22:34 CET James Prestwood wrote: > - if (unlikely(errno == ERANGE || !t || t > 6000)) > + if (unlikely(errno == ERANGE || !t || t > 7115)) Sorry if this is a dumb comment, but why use a 'magic number' [1] (which meaning can be derived from the git commit comment, but not when just looking at the source)? 1) https://en.wikipedia.org/wiki/Magic_number_(programming)