Skip to content

Commit 1ef794b

Browse files
authored
Merge pull request #18971 from keithc-ca/brace
Fix compile error for JAVA_SPEC_VERSION < 19
2 parents 52513fa + 295e00b commit 1ef794b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime/jvmti/jvmtiThread.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,9 +510,9 @@ jvmtiInterruptThread(jvmtiEnv *env,
510510
rc = JVMTI_ERROR_INTERNAL;
511511
}
512512
}
513-
}
514-
exit:
513+
exit:;
515514
#endif /* JAVA_SPEC_VERSION >= 19 */
515+
}
516516

517517
TRACE_JVMTI_RETURN(jvmtiInterruptThread);
518518
}

0 commit comments

Comments
 (0)