mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-16 12:06:55 +02:00
Tiny compiler warning fix.
This commit is contained in:
parent
694e9f2bdc
commit
2355fa973e
1 changed files with 3 additions and 2 deletions
|
@ -269,11 +269,12 @@ public:
|
|||
return NETWORK_OK;
|
||||
else return NETWORK_WAITING_FOR_FIRST_AUTOCONF;
|
||||
case NETCONF_FAILURE_INIT_FAILED:
|
||||
default:
|
||||
return NETWORK_INITIALIZATION_FAILED;
|
||||
}
|
||||
} else if (_netconfFailure == NETCONF_FAILURE_INIT_FAILED)
|
||||
} else if (_netconfFailure == NETCONF_FAILURE_INIT_FAILED) {
|
||||
return NETWORK_INITIALIZATION_FAILED;
|
||||
else return NETWORK_INITIALIZING;
|
||||
} else return NETWORK_INITIALIZING;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue