add a cast to a debug message to remove a warning.

This commit is contained in:
Mariano Alvira 2011-02-18 11:11:31 -05:00
parent a4ef14f204
commit c0b21702ed

View file

@ -150,7 +150,7 @@ void check_maca(void) {
#if DEBUG_MACA
if((count = count_packets()) != NUM_PACKETS) {
PRINTF("check maca: count_packets %d\n", count);
PRINTF("check maca: count_packets %d\n", (int)count);
Print_Packets("check_maca");
#if PACKET_STATS
for(i=0; i<NUM_PACKETS; i++) {