Skip to content

Commit c6a5dff

Browse files
8368301: sun/security/util/math/intpoly compiler warnings
1 parent d05e588 commit c6a5dff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make/jdk/src/classes/build/tools/intpoly/FieldGen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ private String generate(FieldParams params) throws IOException {
628628
result.appendLine("private static final long CARRY_ADD = 1 << "
629629
+ (params.getBitsPerLimb() - 1) + ";");
630630
if (params.getBitsPerLimb() * params.getNumLimbs() != params.getPower()) {
631-
result.appendLine("private static final long LIMB_MASK = -1 "
631+
result.appendLine("private static final long LIMB_MASK = -1L "
632632
+ ">>> (64 - BITS_PER_LIMB);");
633633
}
634634

0 commit comments

Comments
 (0)