diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-02-13 14:48:30 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-02-13 14:48:30 (GMT) |
commit | 46e24b92bfabd15d5cd09d2373914daa18e7bad3 (patch) | |
tree | 1dbc8104a98dd8d617f42d1645118fa863591217 /tools | |
parent | 57189d8a82f972cc43d6c262f71588eff4c17b30 (diff) | |
download | hdf5-46e24b92bfabd15d5cd09d2373914daa18e7bad3.zip hdf5-46e24b92bfabd15d5cd09d2373914daa18e7bad3.tar.gz hdf5-46e24b92bfabd15d5cd09d2373914daa18e7bad3.tar.bz2 |
[svn-r13286]
replaced a dataset type from H5T_NATIVE_CHAR to H5T_NATIVE_SCHAR
Diffstat (limited to 'tools')
-rw-r--r-- | tools/h5dump/h5dumpgentest.c | 6 | ||||
-rw-r--r-- | tools/testfiles/tbigdims.h5 | bin | 6192 -> 6192 bytes |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5dump/h5dumpgentest.c b/tools/h5dump/h5dumpgentest.c index 0fb0c31..cdc75a7 100644 --- a/tools/h5dump/h5dumpgentest.c +++ b/tools/h5dump/h5dumpgentest.c @@ -5663,13 +5663,13 @@ static void gent_bigdims(void) /* create dataset */ if ((dcpl = H5Pcreate(H5P_DATASET_CREATE))<0) goto out; - if (H5Pset_fill_value(dcpl, H5T_NATIVE_CHAR, &fillvalue)<0) + if (H5Pset_fill_value(dcpl, H5T_NATIVE_SCHAR, &fillvalue)<0) goto out; if (H5Pset_chunk(dcpl, 1, chunk_dims)<0) goto out; if ((f_sid = H5Screate_simple(1,dims,NULL))<0) goto out; - if ((did = H5Dcreate(fid,"dset4gb",H5T_NATIVE_CHAR,f_sid,dcpl))<0) + if ((did = H5Dcreate(fid,"dset4gb",H5T_NATIVE_SCHAR,f_sid,dcpl))<0) goto out; if ((tid = H5Dget_type(did))<0) goto out; @@ -5693,7 +5693,7 @@ static void gent_bigdims(void) if (H5Sselect_hyperslab (f_sid,H5S_SELECT_SET,hs_start,NULL,hs_size,NULL)<0) goto out; - if (H5Dwrite (did,H5T_NATIVE_CHAR,m_sid,f_sid,H5P_DEFAULT,buf)<0) + if (H5Dwrite (did,H5T_NATIVE_SCHAR,m_sid,f_sid,H5P_DEFAULT,buf)<0) goto out; diff --git a/tools/testfiles/tbigdims.h5 b/tools/testfiles/tbigdims.h5 Binary files differindex 5e3dc52..20e674d 100644 --- a/tools/testfiles/tbigdims.h5 +++ b/tools/testfiles/tbigdims.h5 |