< prev index next >

src/java.base/share/native/libzip/CRC32.c

Print this page
rev 49551 : 8201226: missing JNIEXPORT / JNICALL at some places in function declarations/implementations

@@ -52,11 +52,11 @@
         (*env)->ReleasePrimitiveArrayCritical(env, b, buf, 0);
     }
     return crc;
 }
 
-JNIEXPORT jint JNICALL
+JNIEXPORT jint
 ZIP_CRC32(jint crc, const jbyte *buf, jint len)
 {
     return crc32(crc, (Bytef*)buf, len);
 }
 
< prev index next >