Browse Source

another couple of missing semicolons

Grant Limberg 9 năm trước cách đây
mục cha
commit
dccca7df1a
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      java/jni/ZT_jniutils.cpp

+ 2 - 2
java/jni/ZT_jniutils.cpp

@@ -889,14 +889,14 @@ jobject newVirtualNetworkRoute(JNIEnv *env, const ZT_VirtualNetworkRoute &route)
     jfieldID metricField = NULL;
 
     targetField = lookup.findField(virtualNetworkRouteClass, "target",
-        "Ljava/net/InetSocketAddress");
+        "Ljava/net/InetSocketAddress;");
     if(env->ExceptionCheck() || targetField == NULL)
     {
         return NULL;
     }
 
     viaField = lookup.findField(virtualNetworkRouteClass, "via",
-        "Ljava/net/InetSocketAddress");
+        "Ljava/net/InetSocketAddress;");
     if(env->ExceptionCheck() || targetField == NULL)
     {
         return NULL;