From 8dc9f39570e4368291f2016961a3658d2945b942 Mon Sep 17 00:00:00 2001 From: Scot Breitenfeld Date: Wed, 12 Dec 2012 09:56:39 -0500 Subject: [svn-r23093] Fixed API to be 1.6 compliant, removed deprecated APIs Checked: jam (gnu, mpi) --disable-deprecated-symbols, --with-default-api-version=v16 --- examples/h5_cmprss.c | 6 +++--- examples/h5_crtatt.c | 4 ++-- examples/h5_crtdat.c | 2 +- examples/h5_crtgrp.c | 2 +- examples/h5_crtgrpar.c | 6 +++--- examples/h5_crtgrpd.c | 6 +++--- examples/h5_extend.c | 6 +++--- examples/h5_rdwt.c | 2 +- examples/h5_subset.c | 4 ++-- fortran/examples/h5_extend.f90 | 2 +- 10 files changed, 20 insertions(+), 20 deletions(-) diff --git a/examples/h5_cmprss.c b/examples/h5_cmprss.c index efaf953..4a2f982 100644 --- a/examples/h5_cmprss.c +++ b/examples/h5_cmprss.c @@ -75,7 +75,7 @@ int main () { status = H5Pset_szip (plist_id, szip_options_mask, szip_pixels_per_block); */ - dataset_id = H5Dcreate (file_id, "Compressed_Data", H5T_STD_I32BE, + dataset_id = H5Dcreate2 (file_id, "Compressed_Data", H5T_STD_I32BE, dataspace_id, H5P_DEFAULT, plist_id, H5P_DEFAULT); for (i = 0; i< DIM0; i++) @@ -91,7 +91,7 @@ int main () { /* Now reopen the file and dataset in the file. */ file_id = H5Fopen (FILE, H5F_ACC_RDWR, H5P_DEFAULT); - dataset_id = H5Dopen (file_id, "Compressed_Data", H5P_DEFAULT); + dataset_id = H5Dopen2 (file_id, "Compressed_Data", H5P_DEFAULT); /* Retrieve filter information. */ plist_id = H5Dget_create_plist (dataset_id); @@ -101,7 +101,7 @@ int main () { for (i=0; i