summaryrefslogtreecommitdiff
path: root/apps/examples/tcpecho
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/tcpecho')
-rw-r--r--apps/examples/tcpecho/tcpecho_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/examples/tcpecho/tcpecho_main.c b/apps/examples/tcpecho/tcpecho_main.c
index c26462f14..e70028fce 100644
--- a/apps/examples/tcpecho/tcpecho_main.c
+++ b/apps/examples/tcpecho/tcpecho_main.c
@@ -102,13 +102,13 @@ static int tcpecho_netsetup()
* network has already been configured by NSH's start-up logic.
*/
- struct dhcpc_state ds;
#ifndef CONFIG_NSH_BUILTIN_APPS
struct in_addr addr;
#if defined(CONFIG_EXAMPLES_TCPECHO_DHCPC) || defined(CONFIG_EXAMPLES_TCPECHO_NOMAC)
uint8_t mac[IFHWADDRLEN];
#endif
#ifdef CONFIG_EXAMPLES_TCPECHO_DHCPC
+ struct dhcpc_state ds;
void *handle;
#endif