From a6dea614c2bf140de67be9fd2892de9baaaf640d Mon Sep 17 00:00:00 2001 From: SashaXser <24498484+SashaXser@users.noreply.github.com> Date: Tue, 19 Nov 2024 20:01:17 +0400 Subject: [PATCH] Fix code scanning alert no. 3: Wrong type of arguments to formatting function Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- nfq/desync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nfq/desync.c b/nfq/desync.c index f201f38..ed06dce 100644 --- a/nfq/desync.c +++ b/nfq/desync.c @@ -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 (%lu>=%zu). cancelling seqovl.\n",seqovl_pos,split_pos); seqovl = 0; } else