mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 05:54:08 +00:00
dix: fix int mismatches related to MakeAtom()
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
committed by
Enrico Weigelt
parent
e006550e29
commit
f03042a2b7
@@ -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);
|
||||
}
|
||||
|
||||
/***====================================================================***/
|
||||
|
||||
Reference in New Issue
Block a user