diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-10-14 19:23:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-10-14 19:23:40 (GMT) |
commit | 294647ea977789d05a79107cc36fd3fc69b980be (patch) | |
tree | 44ae28f4a0fcf95438174cc067d3df9264651e1f /src/H5FD.c | |
parent | a028401448cced890029001070f6f505297e839d (diff) | |
download | hdf5-294647ea977789d05a79107cc36fd3fc69b980be.zip hdf5-294647ea977789d05a79107cc36fd3fc69b980be.tar.gz hdf5-294647ea977789d05a79107cc36fd3fc69b980be.tar.bz2 |
[svn-r5987] Purpose:
Code cleanup
Description:
Clean up compile warnings.
Platforms tested:
FreeBSD 4.6 (sleipnir) w and w/o parallel
Linux 2.2.x (eirene) w/FORTRAN & C++
Solaris 2.7 (arabica) w/FORTRAN
IRIX64 6.5 (modi4) w/FORTRAN & parallel
Diffstat (limited to 'src/H5FD.c')
-rw-r--r-- | src/H5FD.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1800,7 +1800,7 @@ H5FD_free(H5FD_t *file, H5FD_mem_t type, haddr_t addr, hsize_t size) /* Block to free is in the middle of the accumulator */ if(H5F_addr_lt(addr,file->accum_loc+file->accum_size)) { haddr_t tail_addr; - hsize_t tail_size; + size_t tail_size; /* Calculate the address & size of the tail to write */ tail_addr=addr+size; |