diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-06-29 14:40:34 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-06-29 14:40:34 (GMT) |
commit | b1f5c9e9d63e16d67089f08ef2becc5119592a76 (patch) | |
tree | 4a726f9c7af3d4460a79444ccc4bdabe6698b264 /java/src/jni/h5dImp.c | |
parent | 2f53075ea9bb1079c8eaebbaa51c058c5107f8b2 (diff) | |
download | hdf5-b1f5c9e9d63e16d67089f08ef2becc5119592a76.zip hdf5-b1f5c9e9d63e16d67089f08ef2becc5119592a76.tar.gz hdf5-b1f5c9e9d63e16d67089f08ef2becc5119592a76.tar.bz2 |
Fix ptr arith
Diffstat (limited to 'java/src/jni/h5dImp.c')
-rw-r--r-- | java/src/jni/h5dImp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/jni/h5dImp.c b/java/src/jni/h5dImp.c index 6d4d8f1..cea6bb4 100644 --- a/java/src/jni/h5dImp.c +++ b/java/src/jni/h5dImp.c @@ -1470,7 +1470,7 @@ H5DwriteVL_str wdata = (char**)HDmalloc((size_t)size * sizeof (char*)); if (!wdata) { - h5JNIFatalError(env, "H5DwriteVL_string: cannot allocate buffer"); + h5JNIFatalError(env, "H5DwriteVL_str: cannot allocate buffer"); } /* end if */ else { HDmemset(wdata, 0, (size_t)size * sizeof(char*)); |