Fix formatting

PUBLISHED_FROM=4d4d49136e13ba8035d452a4f64fcaf48f15bdb3
This commit is contained in:
Dmitry Frank 2017-07-04 22:31:26 +03:00 committed by Cesanta Bot
parent 4d0cc95ff4
commit 41558bbf64

View File

@ -14637,9 +14637,9 @@ static int mg_lwip_udp_send(struct mg_connection *nc, const void *data,
struct udp_pcb *upcb = cs->pcb.udp;
struct pbuf *p = pbuf_alloc(PBUF_TRANSPORT, len, PBUF_RAM);
#if defined(LWIP_IPV4) && LWIP_IPV4 && defined(LWIP_IPV6) && LWIP_IPV6
ip_addr_t ip = { .u_addr.ip4.addr = nc->sa.sin.sin_addr.s_addr, .type = 0 };
ip_addr_t ip = {.u_addr.ip4.addr = nc->sa.sin.sin_addr.s_addr, .type = 0};
#else
ip_addr_t ip = { .addr = nc->sa.sin.sin_addr.s_addr };
ip_addr_t ip = {.addr = nc->sa.sin.sin_addr.s_addr};
#endif
u16_t port = ntohs(nc->sa.sin.sin_port);
if (p == NULL) {