dix: inpututils: don't use %hhx printf pattern

mingw's printf() doesn't understand it yet, and it's not really
important here, so just use `%hx` instead.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-07-25 10:30:50 +02:00
committed by Enrico Weigelt
parent 2353d7a710
commit 7fd5a6759e

View File

@@ -699,7 +699,7 @@ verify_internal_event(const InternalEvent *ev)
ErrorF("dix: invalid event type %d\n", ev->any.header);
for (int i = 0; i < sizeof(xEvent); i++, data++) {
ErrorF("%02hhx ", *data);
ErrorF("%02hx ", *data);
if ((i % 8) == 7)
ErrorF("\n");