From a35780d5d006c4ae401fbc46391afca2747eb5b0 Mon Sep 17 00:00:00 2001 From: Antonio Alvarez Feijoo Date: Thu, 9 Oct 2025 10:33:02 +0200 Subject: [PATCH] creds: fix return type from normalize_separator() Follow-up for 097374f3b904e0649db8b0385b3ee66e1bf0a7d6 --- src/creds/creds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/creds/creds.c b/src/creds/creds.c index e861225dbe..92b527270d 100644 --- a/src/creds/creds.c +++ b/src/creds/creds.c @@ -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 '_';