mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-21 18:06:39 +00:00
another couple of missing semicolons
This commit is contained in:
parent
407ad659ea
commit
dccca7df1a
@ -889,14 +889,14 @@ jobject newVirtualNetworkRoute(JNIEnv *env, const ZT_VirtualNetworkRoute &route)
|
|||||||
jfieldID metricField = NULL;
|
jfieldID metricField = NULL;
|
||||||
|
|
||||||
targetField = lookup.findField(virtualNetworkRouteClass, "target",
|
targetField = lookup.findField(virtualNetworkRouteClass, "target",
|
||||||
"Ljava/net/InetSocketAddress");
|
"Ljava/net/InetSocketAddress;");
|
||||||
if(env->ExceptionCheck() || targetField == NULL)
|
if(env->ExceptionCheck() || targetField == NULL)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
viaField = lookup.findField(virtualNetworkRouteClass, "via",
|
viaField = lookup.findField(virtualNetworkRouteClass, "via",
|
||||||
"Ljava/net/InetSocketAddress");
|
"Ljava/net/InetSocketAddress;");
|
||||||
if(env->ExceptionCheck() || targetField == NULL)
|
if(env->ExceptionCheck() || targetField == NULL)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user