From 94daca8ceda2cc4a437bdda0e6f7222a741e48e2 Mon Sep 17 00:00:00 2001 From: bol-van Date: Sat, 27 Dec 2025 19:51:34 +0300 Subject: [PATCH] nfqws2: wrong type fix --- nfq2/pools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nfq2/pools.c b/nfq2/pools.c index 42ed7c2..6ea9c84 100644 --- a/nfq2/pools.c +++ b/nfq2/pools.c @@ -254,7 +254,7 @@ static struct str2_list *str2list_entry_copy(const struct str2_list *entry) return e2; err: str2list_entry_destroy(e2); - return false; + return NULL; } bool str2list_copy(struct str2_list_head *to, const struct str2_list_head *from) {