mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 05:54:08 +00:00
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:
committed by
Enrico Weigelt
parent
2353d7a710
commit
7fd5a6759e
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user