diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-26 20:07:10 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-26 20:07:10 (GMT) |
commit | 3b63db5f7fb8299ab60a2af8a709e9e33764c11e (patch) | |
tree | 9ac07c759d0cfc77f5c599268cc99d540ea74057 /src/H5Gnode.c | |
parent | b232f57b9bf48b647f655750b53faf6aabbf74b9 (diff) | |
download | hdf5-3b63db5f7fb8299ab60a2af8a709e9e33764c11e.zip hdf5-3b63db5f7fb8299ab60a2af8a709e9e33764c11e.tar.gz hdf5-3b63db5f7fb8299ab60a2af8a709e9e33764c11e.tar.bz2 |
[svn-r9459] Purpose:
Code cleanup
Description:
Clean up minor warnings and align with release branch.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel & FPH5
Solaris 2.7 (arabica) w/production mode
Linux 2.4 (heping) w/C++ and FORTRAN
Diffstat (limited to 'src/H5Gnode.c')
-rw-r--r-- | src/H5Gnode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gnode.c b/src/H5Gnode.c index bdb4ae6..2f83d28 100644 --- a/src/H5Gnode.c +++ b/src/H5Gnode.c @@ -610,7 +610,7 @@ H5G_node_dest(H5F_t UNUSED *f, H5G_node_t *sym) assert(sym); /* Verify that node is clean */ - assert (sym->cache_info.is_dirty==0); + assert (sym->cache_info.is_dirty==FALSE); if(sym->entry) sym->entry = H5FL_SEQ_FREE(H5G_entry_t,sym->entry); |