samples: net: echo-client: Fix compile error

This commit fixes compile error caused by commit 39962dc9
"samples: use k_thread_create()"

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
Jukka Rissanen 2017-06-12 15:24:20 +03:00 committed by Anas Nashif
commit 57df515028

View file

@ -164,7 +164,7 @@ static struct k_thread ipv6_udp_thread_data;
#endif #endif
#if defined(CONFIG_NET_TCP) #if defined(CONFIG_NET_TCP)
static K_THREAD_STACK_DEFINE(ipv6_tcp_stack, STACKSIZE) static K_THREAD_STACK_DEFINE(ipv6_tcp_stack, STACKSIZE);
static struct k_thread ipv6_tcp_thread_data; static struct k_thread ipv6_tcp_thread_data;
#endif #endif