Skip to content

Commit bffb2b1

Browse files
committed
Merge branch 'feature/remove_compiling_error_of_tcpip_adapter' into 'master'
Remove tcpip_adapter compiling error See merge request sdk/ESP8266_RTOS_SDK!423
2 parents 1904c02 + d4e7f39 commit bffb2b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/tcpip_adapter/tcpip_adapter_lwip.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ esp_err_t tcpip_adapter_set_dns_info(tcpip_adapter_if_t tcpip_if, tcpip_adapter_
775775
}
776776

777777
ESP_LOGD(TAG, "set dns if=%d type=%d dns=%x", tcpip_if, type, ip_2_ip4(&(dns->ip))->addr);
778-
IP_SET_TYPE_VAL(dns->ip, IPADDR_TYPE_V4)
778+
IP_SET_TYPE_VAL(dns->ip, IPADDR_TYPE_V4);
779779

780780
if (tcpip_if == TCPIP_ADAPTER_IF_STA || tcpip_if == TCPIP_ADAPTER_IF_ETH) {
781781
dns_setserver(type, &(dns->ip));

0 commit comments

Comments
 (0)