Remove a register keyword

that resurfaced with the recent version update.
This commit is contained in:
Piotr Paweł Stefaniak 2024-03-18 23:49:04 +01:00
parent 94a649b4bb
commit 860a928eca
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ static int update_keys(unsigned long* pkeys, const z_crc_t* pcrc_32_tab, int c)
(*(pkeys+1)) += (*(pkeys+0)) & 0xff;
(*(pkeys+1)) = (*(pkeys+1)) * 134775813L + 1;
{
register int keyshift = (int)((*(pkeys+1)) >> 24);
int keyshift = (int)((*(pkeys+1)) >> 24);
(*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift);
}
return c;