dix: fix int mismatches related to MakeAtom()

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-08-08 15:45:23 +02:00
committed by Enrico Weigelt
parent e006550e29
commit f03042a2b7
4 changed files with 7 additions and 7 deletions

View File

@@ -49,7 +49,7 @@ XkbInternAtom(char *str, Bool only_if_exists)
{
if (str == NULL)
return None;
return MakeAtom(str, strlen(str), !only_if_exists);
return MakeAtom(str, (unsigned int)strlen(str), !only_if_exists);
}
/***====================================================================***/