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_table_01.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_table_01.c')
-rw-r--r-- | hl/examples/ex_table_01.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hl/examples/ex_table_01.c b/hl/examples/ex_table_01.c index de304d9..1d381ae 100644 --- a/hl/examples/ex_table_01.c +++ b/hl/examples/ex_table_01.c @@ -80,7 +80,6 @@ int main( void ) hsize_t chunk_size = 10; int *fill_data = NULL; int compress = 0; - herr_t status; int i; /* Initialize field_type */ @@ -100,7 +99,7 @@ int main( void ) *------------------------------------------------------------------------- */ - status=H5TBmake_table( "Table Title", file_id, TABLE_NAME,NFIELDS,NRECORDS, + H5TBmake_table( "Table Title", file_id, TABLE_NAME,NFIELDS,NRECORDS, dst_size,field_names, dst_offset, field_type, chunk_size, fill_data, compress, p_data ); @@ -109,7 +108,7 @@ int main( void ) *------------------------------------------------------------------------- */ - status=H5TBread_table( file_id, TABLE_NAME, dst_size, dst_offset, dst_sizes, dst_buf ); + H5TBread_table( file_id, TABLE_NAME, dst_size, dst_offset, dst_sizes, dst_buf ); /* print it by rows */ for (i=0; i<NRECORDS; i++) { |