From 9e69e3aeeecfaf3f37c775d02ab09d6186c0d894 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Fri, 15 Jun 2018 21:23:40 +0200 Subject: [PATCH] Fix misleading function name that has msvc in it it contains no platform specific code --- examples/example_app/test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/example_app/test.c b/examples/example_app/test.c index dba9482..1a7fcbb 100644 --- a/examples/example_app/test.c +++ b/examples/example_app/test.c @@ -295,7 +295,7 @@ link_callback(struct netif *state_netif) /* This function initializes all network interfaces */ static void -msvc_netif_init(void) +test_netif_init(void) { #if LWIP_IPV4 && USE_ETHERNET ip4_addr_t ipaddr, netmask, gw; @@ -606,7 +606,7 @@ test_init(void * arg) srand((unsigned int)time(0)); /* init network interfaces */ - msvc_netif_init(); + test_netif_init(); /* init apps */ apps_init();