From f59edd904f3f6684c1ce3f45f1fc62c6ef667745 Mon Sep 17 00:00:00 2001 From: sepfy Date: Mon, 16 Sep 2024 22:47:07 +0800 Subject: [PATCH] Fix actions error --- src/agent.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/agent.c b/src/agent.c index 790bdba..f2c3aa9 100644 --- a/src/agent.c +++ b/src/agent.c @@ -121,9 +121,9 @@ static int agent_create_host_addr(Agent* agent) { int i, j; const char* iface_prefx[] = {CONFIG_IFACE_PREFIX}; IceCandidate* ice_candidate; - int addr_type[] = {AF_INET, + int addr_type[] = { AF_INET, #if CONFIG_IPV6 - AF_INET6, + AF_INET6, #endif };