nfa_api_queue: debug printf format fix

This commit is contained in:
Justin Viiret 2015-11-03 16:23:27 +11:00 committed by Matthew Barr
parent 863ea1b2b2
commit 62776b615b

View File

@ -277,7 +277,7 @@ void debugQueue(const struct mq *q) {
type = "MQE_TOP_N"; type = "MQE_TOP_N";
break; break;
} }
DEBUG_PRINTF("\tq[%u] %lld %d:%s\n", cur, q->items[cur].location, DEBUG_PRINTF("\tq[%u] %lld %u:%s\n", cur, q->items[cur].location,
q->items[cur].type, type); q->items[cur].type, type);
} }
} }