summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-09-14 05:04:25 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-09-14 05:04:25 (GMT)
commitb73f3230590f7716ac9bc603bd6692345a376c8e (patch)
treef3ed8a6ffc5a30b1c5fe6d726ebcdf3ced429d51 /src/H5.c
parent147951e4bb7a7967bbec2324b6f5cc66e40260f3 (diff)
downloadhdf5-b73f3230590f7716ac9bc603bd6692345a376c8e.zip
hdf5-b73f3230590f7716ac9bc603bd6692345a376c8e.tar.gz
hdf5-b73f3230590f7716ac9bc603bd6692345a376c8e.tar.bz2
[svn-r9250] Purpose:
Bug fix Description: Correct typedef for dataset region references to avoid struct alignment issues on Crays. Solution: Change the typedef for hdset_reg_ref_t from a struct to an array of unsigned char's of the correct size and propagate the appropriate adjustments around the code. Platforms tested: FreeBSD 4.10 (sleipnir) Linux 2.4 (verbena) w/fortran Cray T90 (subzero) w/fortran Cray SV1 (wind) w/fortran & parallel Cray T3E (cyclone) w/fortran & parallel
Diffstat (limited to 'src/H5.c')
-rw-r--r--src/H5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5.c b/src/H5.c
index 2e01b58..44f46e1 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -2464,7 +2464,7 @@ H5_trace (const double *returning, const char *func, const char *type, ...)
}
} else {
hobj_ref_t ref = va_arg (ap, hobj_ref_t);
- fprintf (out, "Reference Object=%p", (void *)&ref);
+ HDfprintf(out, "Reference Object=%a", ref);
}
break;