Revert "mi: use %lu instead of %zu in ErrorF() call"

This reverts commit 1bab0c2972a5278fdf11ac5e6939d3955e04e592.
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-07-28 17:37:50 +02:00
parent be207b9c4a
commit 6ed07f0f09

View File

@@ -239,8 +239,8 @@ mieqEnqueue(DeviceIntPtr pDev, InternalEvent *e)
else if (miEventQueue.dropped % QUEUE_DROP_BACKTRACE_FREQUENCY == 0 &&
miEventQueue.dropped / QUEUE_DROP_BACKTRACE_FREQUENCY <=
QUEUE_DROP_BACKTRACE_MAX) {
ErrorF("[mi] EQ overflow continuing. %lu events have been "
"dropped.\n", (unsigned long)miEventQueue.dropped);
ErrorF("[mi] EQ overflow continuing. %zu events have been "
"dropped.\n", miEventQueue.dropped);
if (miEventQueue.dropped / QUEUE_DROP_BACKTRACE_FREQUENCY ==
QUEUE_DROP_BACKTRACE_MAX) {
ErrorF("[mi] No further overflow reports will be "