miext: use dixAddAtom()

Use the new dixAddAtom() helper for creating atoms.
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-07-22 15:20:32 +02:00 committed by Enrico Weigelt
parent dbe1871772
commit fd6467fa78

View File

@ -64,7 +64,7 @@ extern Bool no_configure_window;
static Atom atom; \
if (generation != serverGeneration) { \
generation = serverGeneration; \
atom = MakeAtom (atom_name, strlen (atom_name), TRUE); \
atom = dixAddAtom(atom_name); \
} \
return atom; \
}