Skip to content

Commit d9222ae

Browse files
committed
Native exception handling: Add missing comma
1 parent e6c89fb commit d9222ae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

junixsocket-native/src/main/c/org_newsclub_net_unix_NativeUnixSocket.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ static const char *kExceptionClasses[kExceptionMaxExcl] = {
227227
"java/net/SocketException", // kExceptionSocketException
228228
"java/net/SocketTimeoutException", // kExceptionSocketTimeoutException
229229
"java/lang/IndexOutOfBoundsException", // kExceptionIndexOutOfBoundsException
230-
"java/lang/IllegalStateException" // kExceptionIllegalStateException
231-
"java/lang/NullPointerException" // kExceptionNullPointerException
230+
"java/lang/IllegalStateException", // kExceptionIllegalStateException
231+
"java/lang/NullPointerException" // kExceptionNullPointerException
232232
};
233233

234234
static int _closeFd(JNIEnv * env, jobject fd, int handle);

0 commit comments

Comments
 (0)