timeval: move an exception inline

This commit is contained in:
Viktor Szakats 2025-07-16 13:44:39 +02:00
parent 7611b2ccf3
commit 5013ecac4a
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
2 changed files with 2 additions and 2 deletions

View file

@ -172,7 +172,7 @@ struct curltime curlx_now(void)
(void) mach_timebase_info(&timebase);
usecs = mach_absolute_time();
usecs *= timebase.numer;
usecs *= timebase.numer; /* spellchecker:disable-line */
usecs /= timebase.denom;
usecs /= 1000;