diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-03-09 18:45:44 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-03-09 18:45:44 (GMT) |
commit | 31ffa03914360f530544c48d6a930abc5009e3d8 (patch) | |
tree | 423d8b500386470b0e7371091184214dd9d5fcae /hl/examples/ex_lite2.c | |
parent | 64f65d96d945210c23b28e124d286505e31bb68c (diff) | |
download | hdf5-31ffa03914360f530544c48d6a930abc5009e3d8.zip hdf5-31ffa03914360f530544c48d6a930abc5009e3d8.tar.gz hdf5-31ffa03914360f530544c48d6a930abc5009e3d8.tar.bz2 |
[svn-r26405] Removed compiler warnings, hl/examples:
HDF5-237
tested: h5committest
Diffstat (limited to 'hl/examples/ex_lite2.c')
-rw-r--r-- | hl/examples/ex_lite2.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/hl/examples/ex_lite2.c b/hl/examples/ex_lite2.c index 98f92c8..a696a20 100644 --- a/hl/examples/ex_lite2.c +++ b/hl/examples/ex_lite2.c @@ -21,17 +21,16 @@ int main( void ) hid_t file_id; int data[6]; hsize_t dims[2]; - herr_t status; size_t i, j, nrow, n_values; /* open file from ex_lite1.c */ file_id = H5Fopen ("ex_lite1.h5", H5F_ACC_RDONLY, H5P_DEFAULT); /* read dataset */ - status = H5LTread_dataset_int(file_id,"/dset",data); + H5LTread_dataset_int(file_id,"/dset",data); /* get the dimensions of the dataset */ - status = H5LTget_dataset_info(file_id,"/dset",dims,NULL,NULL); + H5LTget_dataset_info(file_id,"/dset",dims,NULL,NULL); /* print it by rows */ n_values = (size_t)(dims[0] * dims[1]); @@ -44,7 +43,7 @@ int main( void ) } /* close file */ - status = H5Fclose (file_id); + H5Fclose (file_id); return 0; |