diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-06-19 14:01:09 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-06-19 14:01:09 (GMT) |
commit | 0a063ad4819b551774c1849693371fbbd2fa9872 (patch) | |
tree | 52ae6790159e64bcfb58bf28198f06d88734bafd /src/H5.c | |
parent | 52ac5273d5dddb7076e6c75d2e9f538f0d77aa1d (diff) | |
download | hdf5-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) { |