add a cast to a debug message to remove a warning.
This commit is contained in:
parent
a4ef14f204
commit
c0b21702ed
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ void check_maca(void) {
|
||||||
|
|
||||||
#if DEBUG_MACA
|
#if DEBUG_MACA
|
||||||
if((count = count_packets()) != NUM_PACKETS) {
|
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");
|
Print_Packets("check_maca");
|
||||||
#if PACKET_STATS
|
#if PACKET_STATS
|
||||||
for(i=0; i<NUM_PACKETS; i++) {
|
for(i=0; i<NUM_PACKETS; i++) {
|
||||||
|
|
Loading…
Reference in a new issue