diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-05-19 04:58:25 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-05-19 04:58:25 (GMT) |
commit | eff3014d975a3118360fa38660af910af804cdcd (patch) | |
tree | e9068e2babf566e4145342ec073e0e85fde4a56b /src/H5RS.c | |
parent | 603f1c7221df37daba57323bba926bd3087b14db (diff) | |
download | hdf5-eff3014d975a3118360fa38660af910af804cdcd.zip hdf5-eff3014d975a3118360fa38660af910af804cdcd.tar.gz hdf5-eff3014d975a3118360fa38660af910af804cdcd.tar.bz2 |
[svn-r13769] Description:
Clean up minor compiler warnings
Tested on:
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5RS.c')
-rw-r--r-- | src/H5RS.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -230,7 +230,7 @@ H5RS_decr(H5RS_str_t *rs) /* Decrement reference count for string */ if((--rs->n)==0) { if(!rs->wrapped) - H5FL_BLK_FREE(str_buf,rs->s); + (void)H5FL_BLK_FREE(str_buf,rs->s); H5FL_FREE(H5RS_str_t,rs); } /* end if */ |