diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-06-28 21:49:11 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-06-28 21:49:11 (GMT) |
commit | 2f53075ea9bb1079c8eaebbaa51c058c5107f8b2 (patch) | |
tree | 4e17661d21c320c8b14d13da5bd2a752e629a2c5 /java/src/jni | |
parent | e2d2a410d02c558bcf04e56a78a6d2c6f3df4026 (diff) | |
download | hdf5-2f53075ea9bb1079c8eaebbaa51c058c5107f8b2.zip hdf5-2f53075ea9bb1079c8eaebbaa51c058c5107f8b2.tar.gz hdf5-2f53075ea9bb1079c8eaebbaa51c058c5107f8b2.tar.bz2 |
Correct function call
Diffstat (limited to 'java/src/jni')
-rw-r--r-- | java/src/jni/h5util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/jni/h5util.c b/java/src/jni/h5util.c index a379e62..5905a1a 100644 --- a/java/src/jni/h5util.c +++ b/java/src/jni/h5util.c @@ -550,7 +550,7 @@ h5str_convert str++; cptr = HDcalloc(offset, sizeof(hvl_t)); for (i = 0; (i*offset) < (int)size; i++) { - h5str_sprintf(str, container, mtid, cptr + (i*offset), offset, expand_data); + h5str_convert(str, container, mtid, cptr + (i*offset), offset, expand_data); /* remove vlen indicators */ if (str[0] == ',') str++; |