diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 18:47:43 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 18:47:43 (GMT) |
commit | 1186c0b7fa94b89de8514dd20ef47c66aed23581 (patch) | |
tree | df8c4947c2a3aec6e871d8ea80b209532bf802d5 /src/H5HL.c | |
parent | 9038dcb4b6be39e7851a9231f8ab9a5896025868 (diff) | |
download | hdf5-1186c0b7fa94b89de8514dd20ef47c66aed23581.zip hdf5-1186c0b7fa94b89de8514dd20ef47c66aed23581.tar.gz hdf5-1186c0b7fa94b89de8514dd20ef47c66aed23581.tar.bz2 |
[svn-r7297] Purpose:
Code cleanup
Description:
Changed lines like:
H5E_clear(H5E_get_my_stack());
to:
H5E_clear(NULL);
which performs the same operation.
Platforms tested:
h5committested
Diffstat (limited to 'src/H5HL.c')
-rw-r--r-- | src/H5HL.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -433,7 +433,7 @@ H5HL_flush(H5F_t *f, hid_t dxpl_id, hbool_t destroy, haddr_t addr, H5HL_t *heap) /* Release old space on disk */ H5_CHECK_OVERFLOW(heap->disk_alloc,size_t,hsize_t); H5MF_xfree(f, H5FD_MEM_LHEAP, dxpl_id, old_addr, (hsize_t)heap->disk_alloc); - H5E_clear(H5E_get_my_stack()); /*don't really care if the free failed */ + H5E_clear(NULL); /*don't really care if the free failed */ /* Allocate new space on disk */ H5_CHECK_OVERFLOW(heap->mem_alloc,size_t,hsize_t); |