summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2019-09-24 17:17:41 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2019-09-24 17:18:40 (GMT)
commitbd0c625e380db30673353d67c5dedb782e825b92 (patch)
tree20fed2187e86a2719e48bb93b41ca787850f1287 /src
parentde2edbb238092bfc45f6ca27255acfa286bfe026 (diff)
downloadhdf5-bd0c625e380db30673353d67c5dedb782e825b92.zip
hdf5-bd0c625e380db30673353d67c5dedb782e825b92.tar.gz
hdf5-bd0c625e380db30673353d67c5dedb782e825b92.tar.bz2
Clean up excessive casting and parenthesization. No functional change
intended.
Diffstat (limited to 'src')
-rw-r--r--src/H5PB.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PB.c b/src/H5PB.c
index 12a3230..086efd7 100644
--- a/src/H5PB.c
+++ b/src/H5PB.c
@@ -2465,7 +2465,7 @@ H5PB__flush_entry(H5F_t *f, H5PB_t *pb_ptr, H5PB_entry_t *entry_ptr)
HDassert(entry_ptr->image_ptr);
HDassert(entry_ptr->is_dirty);
HDassert((pb_ptr->vfd_swmr_writer) || (!(entry_ptr->is_mpmde)));
- HDassert((uint64_t)0 == (entry_ptr->delay_write_until));
+ HDassert(0 == entry_ptr->delay_write_until);
/* Retrieve the 'eoa' for the file */
if ( HADDR_UNDEF == (eoa = H5F_get_eoa(f, entry_ptr->mem_type)) )