From 0a063ad4819b551774c1849693371fbbd2fa9872 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Tue, 19 Jun 2001 09:01:09 -0500 Subject: [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) --- src/H5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)