summaryrefslogtreecommitdiffstats
path: root/java/src/jni/h5util.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-05-31 17:34:37 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-05-31 17:34:37 (GMT)
commitc59817f3436cdd30059520df7d12eea0512e59b4 (patch)
tree8b7e8c032bf3e89d1cc94f310b40c1814f8f619f /java/src/jni/h5util.c
parent86add4853daee3eb7d5a4f0e0bd81fe7fd943a83 (diff)
downloadhdf5-c59817f3436cdd30059520df7d12eea0512e59b4.zip
hdf5-c59817f3436cdd30059520df7d12eea0512e59b4.tar.gz
hdf5-c59817f3436cdd30059520df7d12eea0512e59b4.tar.bz2
Update cmake macros and java arg format
Diffstat (limited to 'java/src/jni/h5util.c')
-rw-r--r--java/src/jni/h5util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/jni/h5util.c b/java/src/jni/h5util.c
index 5454dce..af83caa 100644
--- a/java/src/jni/h5util.c
+++ b/java/src/jni/h5util.c
@@ -3453,7 +3453,7 @@ done:
*/
JNIEXPORT void JNICALL
Java_hdf_hdf5lib_H5_H5export_1dataset
- (JNIEnv *env, jclass cls, jstring file_export_name, jstring file_name, jstring object_path, jint binary_order)
+ (JNIEnv *env, jclass clss, jstring file_export_name, jstring file_name, jstring object_path, jint binary_order)
{
const char *file_export = NULL;
const char *object_name = NULL;
@@ -3464,7 +3464,7 @@ Java_hdf_hdf5lib_H5_H5export_1dataset
hid_t dataset_id = H5I_INVALID_HID;
FILE *stream = NULL;
- UNUSED(cls);
+ UNUSED(clss);
if (NULL == file_export_name)
H5_NULL_ARGUMENT_ERROR(ENVONLY, "H5export_dataset: file_export_name is NULL");