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

@ -7,7 +7,7 @@ extend-ignore-identifiers-re = [
"^(ba|pn|PN|UE)$",
"^(CNA|ECT|ser)$",
"^(ECT0|ECT1|GOST|HELO|htpt|PASE)$",
"^(numer|optin|_stati64)$",
"^(optin|_stati64)$",
"^0x[0-9a-fA-F]+FUL$",
"^(Januar|eyeballers|HELO_smtp|kno22|MTA4MzIy|passin|perfec|__SecURE|SMTP_HELO|v_alue)$",
"^(clen|req_clen|smtp_perform_helo|smtp_state_helo_resp)$",

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;