nfqws: fix buffer signedness for nfq_handle_packet()

This commit is contained in:
LiviaMedeiros
2024-08-13 23:19:49 +08:00
parent 94c848eab5
commit a833793a15

View File

@@ -156,7 +156,7 @@ static int nfq_main(void)
struct nfq_handle *h = NULL;
struct nfq_q_handle *qh = NULL;
int fd,rv;
uint8_t buf[16384] __attribute__((aligned));
char buf[16384] __attribute__((aligned));
printf("opening library handle\n");
h = nfq_open();