summaryrefslogtreecommitdiffstats
path: root/java/src/jni
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-06-28 21:49:11 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-06-28 21:49:11 (GMT)
commit2f53075ea9bb1079c8eaebbaa51c058c5107f8b2 (patch)
tree4e17661d21c320c8b14d13da5bd2a752e629a2c5 /java/src/jni
parente2d2a410d02c558bcf04e56a78a6d2c6f3df4026 (diff)
downloadhdf5-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.c2
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++;