summaryrefslogtreecommitdiffstats
path: root/src/H5RS.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-05-19 04:58:25 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-05-19 04:58:25 (GMT)
commiteff3014d975a3118360fa38660af910af804cdcd (patch)
treee9068e2babf566e4145342ec073e0e85fde4a56b /src/H5RS.c
parent603f1c7221df37daba57323bba926bd3087b14db (diff)
downloadhdf5-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5RS.c b/src/H5RS.c
index 0a25a7e..065d05f 100644
--- a/src/H5RS.c
+++ b/src/H5RS.c
@@ -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 */