diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-01 20:03:10 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-01 20:03:10 (GMT) |
commit | 5ccfe5a72453299c4995b3faaaab1e35c975fde3 (patch) | |
tree | 6b301625e9865965f19572e91a0dc0b029a9cadd /src/H5HG.c | |
parent | 700a3f0b3cc3d053d3245d5f16066817eee99ab5 (diff) | |
download | hdf5-5ccfe5a72453299c4995b3faaaab1e35c975fde3.zip hdf5-5ccfe5a72453299c4995b3faaaab1e35c975fde3.tar.gz hdf5-5ccfe5a72453299c4995b3faaaab1e35c975fde3.tar.bz2 |
[svn-r8783] Purpose:
Code cleanup
Description:
Clean up almost all warnings from Windows builds.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
Too minor to require h5committest
Diffstat (limited to 'src/H5HG.c')
-rw-r--r-- | src/H5HG.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -794,7 +794,7 @@ H5HG_extend (H5F_t *f, H5HG_heap_t *heap, size_t size) /* Re-allocate the heap information in memory */ if (NULL==(new_chunk = H5FL_BLK_REALLOC (heap_chunk, heap->chunk, heap->size+need))) - HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, NULL, "new heap allocation failed"); + HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, FAIL, "new heap allocation failed"); /* Adjust the size of the heap */ old_size=heap->size; |