Fix compiler warning on some platforms.

This commit is contained in:
Jordan Bancino 2022-12-19 22:21:24 +00:00
parent 94493e6ad8
commit b8027e1aaf

View file

@ -432,7 +432,7 @@ MatrixAuthenticate(HttpServerContext * context, Db * db)
token += 8;
/* Seek past any spaces between "Bearer" and the token */
while (*token && isspace(*token))
while (*token && isspace((unsigned char) *token))
{
token++;
}