From 24d2c0866be0853d7746792e8a5dfe5b54624047 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sat, 28 Oct 2017 07:37:56 +0200 Subject: [PATCH] Fixed a compile-breaking error in net_slirp.c. --- src/network/net_slirp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/net_slirp.c b/src/network/net_slirp.c index 0ac3e0713..6b30c9f37 100644 --- a/src/network/net_slirp.c +++ b/src/network/net_slirp.c @@ -147,7 +147,7 @@ network_slirp_setup(uint8_t *mac, NETRXCB func, void *arg) network_thread_init(); - thread_start = thread_create_event(); + thread_started = thread_create_event(); pclog("SLiRP: starting thread..\n"); poll_tid = thread_create(poll_thread, mac);