summaryrefslogtreecommitdiffstats
path: root/src/H5FD.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-07-16 16:40:56 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-07-16 16:40:56 (GMT)
commit00f62b983a2f2051adfd4dd619c8db9148472347 (patch)
treed7afd1f8d6ab33c83a0b02a4aa98100fee7d0b6e /src/H5FD.c
parent6e7e3dc8c7ddebf88cacf3c2d4495eb80a25feba (diff)
downloadhdf5-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FD.c b/src/H5FD.c
index 49ad8c0..1b04a01 100644
--- a/src/H5FD.c
+++ b/src/H5FD.c
@@ -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) {