creds: fix return type from normalize_separator()

Follow-up for 097374f3b9
This commit is contained in:
Antonio Alvarez Feijoo
2025-10-09 10:33:02 +02:00
committed by Luca Boccassi
parent bdcfd54b1a
commit a35780d5d0

View File

@@ -1232,7 +1232,7 @@ static int settle_scope(
return 0;
}
static bool normalize_separator(char c) {
static char normalize_separator(char c) {
if (IN_SET(c, '-', '+', '_'))
return '_';