]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
nfa_api_queue: debug printf format fix
authorJustin Viiret <justin.viiret@intel.com>
Tue, 3 Nov 2015 05:23:27 +0000 (16:23 +1100)
committerMatthew Barr <matthew.barr@intel.com>
Tue, 10 Nov 2015 03:36:38 +0000 (14:36 +1100)
src/nfa/nfa_api_queue.h

index 75c15ccea373ff0c11977486e86b1d86cc87fce9..59c18fcaefee022c7f2dc3e8933a2149ba33e332 100644 (file)
@@ -277,7 +277,7 @@ void debugQueue(const struct mq *q) {
             type = "MQE_TOP_N";
             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);
     }
 }