From 395b9480c55809e72eff3ce5487322b74f70f2af Mon Sep 17 00:00:00 2001 From: bol-van Date: Tue, 19 Nov 2024 19:27:36 +0300 Subject: [PATCH] nfqws: fix wrong printf format --- nfq/desync.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nfq/desync.c b/nfq/desync.c index f201f38..c50196e 100644 --- a/nfq/desync.c +++ b/nfq/desync.c @@ -1395,7 +1395,7 @@ static uint8_t dpi_desync_tcp_packet_play(bool replay, size_t reasm_offset, uint if (i==0) { if (seqovl_pos>=from) - DLOG("seqovl>=split_pos (%u>=%zu). cancelling seqovl for part %d.\n",seqovl,from,i+2); + DLOG("seqovl>=split_pos (%zu>=%zu). cancelling seqovl for part %d.\n",seqovl,from,i+2); else { seqovl = seqovl_pos; @@ -1440,7 +1440,7 @@ static uint8_t dpi_desync_tcp_packet_play(bool replay, size_t reasm_offset, uint if (seqovl_pos>=split_pos) { - DLOG("seqovl>=split_pos (%u>=%zu). cancelling seqovl.\n",seqovl_pos,split_pos); + DLOG("seqovl>=split_pos (%zu>=%zu). cancelling seqovl.\n",seqovl_pos,split_pos); seqovl = 0; } else