Remove register keyword from all the function arguments.

Adds no value.
This commit is contained in:
René van Dorst
2026-08-26 21:52:31 +02:00
parent 45d0aac118
commit bf0bea1edd
10 changed files with 45 additions and 47 deletions
+1 -1
View File
@@ -553,7 +553,7 @@ void handle_post(void)
session_id[SESSION_ID_LENGTH] = NUL;
slen = strtox(outbuf, "HTTP/1.1 302 Found\r\nConnection: close\r\nLocation: index.html\r\n" \
"Set-Cookie: session=");
for (register uint8_t i = 0; i < SESSION_ID_LENGTH; i++)
for (uint8_t i = 0; i < SESSION_ID_LENGTH; i++)
outbuf[slen++] = session_id[i];
slen += strtox(outbuf + slen, "; SameSite=Strict\r\n\r\n");
} else {