From: Antonio Alvarez Feijoo Date: Thu, 9 Oct 2025 08:33:02 +0000 (+0200) Subject: creds: fix return type from normalize_separator() X-Git-Tag: v259-rc1~351 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a35780d5d006c4ae401fbc46391afca2747eb5b0;p=thirdparty%2Fsystemd.git creds: fix return type from normalize_separator() Follow-up for 097374f3b904e0649db8b0385b3ee66e1bf0a7d6 --- diff --git a/src/creds/creds.c b/src/creds/creds.c index e861225dbe7..92b527270d1 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 '_';