Skip to content

Commit

Permalink
Fix wrong int type as some systems have int as 64-bit wide (HDFGroup#…
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterC-DLS authored and lrknox committed Jun 7, 2024
1 parent 9830044 commit 5998008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/jni/h5Imp.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ JNIEXPORT jint JNICALL
Java_hdf_hdf5lib_H5_H5get_1libversion(JNIEnv *env, jclass clss, jintArray libversion)
{
jboolean libversionArrayIsCopy;
int *libversionArray = NULL;
jint *libversionArray = NULL;
herr_t status = FAIL;

UNUSED(clss);
Expand Down

0 comments on commit 5998008

Please sign in to comment.