From: Jin-Seong Kim Date: Tue, 11 Apr 2017 04:26:04 +0000 (+0900) Subject: lwip: fix a compilation error X-Git-Tag: 1.1_Public_Release~614^2~74 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a943a1bac126d4947676717c9da19a2ddaf0a093;p=rtos%2Ftinyara.git lwip: fix a compilation error This commit is to fix compilation error due to NET_ARP_TABLE_SIZE according to lwipopts.h, CONFIG_NET_ARP_TABLESIZE is intended configuration. Change-Id: Id9fd2a52117c7c4b739e64c452e31d2aecb0a69e Signed-off-by: Jin-Seong Kim --- diff --git a/os/net/lwip/configs/arp/Kconfig b/os/net/lwip/configs/arp/Kconfig index 838a632..5e19f98 100644 --- a/os/net/lwip/configs/arp/Kconfig +++ b/os/net/lwip/configs/arp/Kconfig @@ -14,7 +14,7 @@ config NET_ARP if NET_ARP -config NET_ARP_TABLE_SIZE +config NET_ARP_TABLESIZE int "ARP table size" default 10 ---help---