diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-05-07 19:37:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-05-07 19:37:48 (GMT) |
commit | bbe03d73613afbcdeca14c045c8b90fac37e0fe8 (patch) | |
tree | 6c6468ecf923ad7f1101e0719d2af1894e63ad64 /hl/src | |
parent | c952661afbac41d4bf2622899bf2a4c2c02b07b5 (diff) | |
download | hdf5-bbe03d73613afbcdeca14c045c8b90fac37e0fe8.zip hdf5-bbe03d73613afbcdeca14c045c8b90fac37e0fe8.tar.gz hdf5-bbe03d73613afbcdeca14c045c8b90fac37e0fe8.tar.bz2 |
[svn-r10736] Purpose:
Code cleanup
Description:
Clean up some compiler warnings
Platforms tested:
FreeBSD 4.11 (sleipnir)
h5committest
Diffstat (limited to 'hl/src')
-rw-r--r-- | hl/src/H5PT.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/hl/src/H5PT.c b/hl/src/H5PT.c index 10b148b..d59e9ed 100644 --- a/hl/src/H5PT.c +++ b/hl/src/H5PT.c @@ -291,8 +291,6 @@ out: */ herr_t H5PT_close( htbl_t* table) { - herr_t return_status = 0; - if(table == NULL) goto out; @@ -670,10 +668,8 @@ out: */ herr_t H5PTis_valid(hid_t table_id) { - htbl_t * table; - /* find the table struct from its ID */ - if((table = (htbl_t *) H5Iobject_verify(table_id, H5PT_ptable_id_type)) ==NULL) + if(H5Iobject_verify(table_id, H5PT_ptable_id_type) ==NULL) return -1; return 0; |