From d6eb4d281f943ca52578f60a97c98f4a190b3043 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Fri, 23 Apr 1999 16:12:02 -0500 Subject: [svn-r1211] Took out linefeeds from hyperslab.c and changed a datatype in tselect.c to make it more portable. --- test/hyperslab.c | 3 +-- test/tselect.c | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/test/hyperslab.c b/test/hyperslab.c index c1e7df8..9a59363 100644 --- a/test/hyperslab.c +++ b/test/hyperslab.c @@ -618,8 +618,7 @@ test_multifill(size_t nx) dst = H5MM_malloc(nx * sizeof(*dst)); #else /* - to match the HDfree I plan on using to free this memory - */ + to match the HDfree I plan on using to free this memory */ src = malloc(nx * sizeof(*src)); dst = malloc(nx * sizeof(*dst)); #endif diff --git a/test/tselect.c b/test/tselect.c index a538518..f94ee85 100644 --- a/test/tselect.c +++ b/test/tselect.c @@ -708,7 +708,7 @@ test_select_hyper_stride(void) dataset=H5Dcreate(fid1,"Dataset1",H5T_STD_U16LE,sid1,H5P_DEFAULT); /* Write selection to disk */ - ret=H5Dwrite(dataset,H5T_STD_U16LE,sid2,sid1,H5P_DEFAULT,wbuf); + ret=H5Dwrite(dataset,H5T_NATIVE_USHORT,sid2,sid1,H5P_DEFAULT,wbuf); CHECK(ret, FAIL, "H5Dwrite"); /* Close memory dataspace */ @@ -728,7 +728,7 @@ test_select_hyper_stride(void) CHECK(ret, FAIL, "H5Sselect_hyperslab"); /* Read selection from disk */ - ret=H5Dread(dataset,H5T_STD_U16LE,sid2,sid1,H5P_DEFAULT,rbuf); + ret=H5Dread(dataset,H5T_NATIVE_USHORT,sid2,sid1,H5P_DEFAULT,rbuf); CHECK(ret, FAIL, "H5Dread"); /* Sort the locations into the proper order */ -- cgit v0.12