[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)
This commit is contained in:
Quincey Koziol 2001-06-19 09:01:09 -05:00
parent 52ac5273d5
commit 0a063ad481

View File

@ -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)) {