From aabfa5c03f1637afce3b04d0c9cdb30360c30a18 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Fri, 11 Jan 2002 10:41:48 -0500 Subject: [svn-r4813] Purpose: Bug fix Description: HDfprintf was not handling Microsoft's "%I64d" extension to printf for printing thier '__int64' type. Solution: Added code to properly detect and use this extension. Platforms tested: None! (Kent will be testing shortly) --- src/H5.c | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/src/H5.c b/src/H5.c index 451eb0d..ce143f6 100644 --- a/src/H5.c +++ b/src/H5.c @@ -797,7 +797,7 @@ HDfprintf (FILE *stream, const char *fmt, ...) } /* Type modifier */ - if (HDstrchr ("ZHhlqL", *s)) { + if (HDstrchr ("ZHhlqLI", *s)) { switch (*s) { case 'H': if (sizeof(hsize_t)