Browse Source

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>
pull/815/head^2
SashaXser 9 months ago
committed by GitHub
parent
commit
a6dea614c2
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      nfq/desync.c

2
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

Loading…
Cancel
Save