mirror of
https://git.openwrt.org/feed/routing.git
synced 2025-12-20 02:18:57 +08:00
GCC14 introduced -Wcalloc-transposed-args that check calloc pattern and warn if the args are somehow swapped. The custom allocator in cjdns have the args swapped so the GCC pattern matching reporting a problem is actually a false positive. Disable -Wcalloc-transposed-args warning to fix compilation error as -Werror is enabled. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>