summaryrefslogtreecommitdiffstats
path: root/hl/examples/ex_table_01.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2015-03-11 09:59:37 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2015-03-11 09:59:37 (GMT)
commit77f1054b3d34e2ee65de389bd8588c031db7db1f (patch)
tree0490d5dc58b82e4db0b3fbd3fd4cf28845bde943 /hl/examples/ex_table_01.c
parent52896a9f015ce685e00c72dba3aff146ebc3df49 (diff)
parent88ac8e8929f6fd99732a1e08ced4ea82bfb230f1 (diff)
downloadhdf5-77f1054b3d34e2ee65de389bd8588c031db7db1f.zip
hdf5-77f1054b3d34e2ee65de389bd8588c031db7db1f.tar.gz
hdf5-77f1054b3d34e2ee65de389bd8588c031db7db1f.tar.bz2
[svn-r26429] Merge of r26393-26428 from the trunk.
Tested w/ h5committest
Diffstat (limited to 'hl/examples/ex_table_01.c')
-rw-r--r--hl/examples/ex_table_01.c5
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++) {