summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-06-19 14:01:09 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-06-19 14:01:09 (GMT)
commit0a063ad4819b551774c1849693371fbbd2fa9872 (patch)
tree52ae6790159e64bcfb58bf28198f06d88734bafd /src/H5.c
parent52ac5273d5dddb7076e6c75d2e9f538f0d77aa1d (diff)
downloadhdf5-0a063ad4819b551774c1849693371fbbd2fa9872.zip
hdf5-0a063ad4819b551774c1849693371fbbd2fa9872.tar.gz
hdf5-0a063ad4819b551774c1849693371fbbd2fa9872.tar.bz2
[svn-r4014] Purpose:
Bug Fix Description: HDfprintf wasn't aware of 'L' type modifier and was passing along the '%Ld' verbatim instead of printing a long long integer value. Solution: Added 'L' to the type modifiers checked in HDfprintf Platforms tested: Linux (eirene)
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 d0fef4b..d31df68 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -808,7 +808,7 @@ HDfprintf (FILE *stream, const char *fmt, ...)
}
/* Type modifier */
- if (HDstrchr ("ZHhlq", *s)) {
+ if (HDstrchr ("ZHhlqL", *s)) {
switch (*s) {
case 'H':
if (sizeof(hsize_t)<sizeof(long)) {