diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-07-16 16:40:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-07-16 16:40:56 (GMT) |
commit | 00f62b983a2f2051adfd4dd619c8db9148472347 (patch) | |
tree | d7afd1f8d6ab33c83a0b02a4aa98100fee7d0b6e /src/H5FD.c | |
parent | 6e7e3dc8c7ddebf88cacf3c2d4495eb80a25feba (diff) | |
download | hdf5-00f62b983a2f2051adfd4dd619c8db9148472347.zip hdf5-00f62b983a2f2051adfd4dd619c8db9148472347.tar.gz hdf5-00f62b983a2f2051adfd4dd619c8db9148472347.tar.bz2 |
[svn-r4213] Purpose:
Bug fix... (sorta)
Description:
Added --enable-linux-lfs configure flag to have better control over whether
the enable large file support on Linux machines. Also removed the
-malign-double flag for gcc since it can potentially cause errors which
are difficult to detect.
Platforms tested:
Linix 2.2 & 2.4 (eirene and dangermouse)
Diffstat (limited to 'src/H5FD.c')
-rw-r--r-- | src/H5FD.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1965,7 +1965,7 @@ H5FDread(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, size_t size void *buf/*out*/) { FUNC_ENTER(H5FDread, FAIL); - H5TRACE6("e","xMtiahx",file,type,dxpl_id,addr,size,buf); + H5TRACE6("e","xMtiazx",file,type,dxpl_id,addr,size,buf); /* Check args */ if (!file || !file->cls) { @@ -2121,7 +2121,7 @@ H5FDwrite(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, size_t siz const void *buf) { FUNC_ENTER(H5FDwrite, FAIL); - H5TRACE6("e","xMtiahx",file,type,dxpl_id,addr,size,buf); + H5TRACE6("e","xMtiazx",file,type,dxpl_id,addr,size,buf); /* Check args */ if (!file || !file->cls) { |