From a89594728adfd0b3aded473b44565c5e5e5dcd18 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Fri, 8 Aug 2003 14:23:40 -0500 Subject: [svn-r7319] Purpose: Code cleanup Description: Use unsigned integers to print 'haddr_t's Platforms tested: h5committested --- src/H5.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/H5.c b/src/H5.c index 8cffc74..90d402b 100644 --- a/src/H5.c +++ b/src/H5.c @@ -1049,12 +1049,12 @@ HDfprintf(FILE *stream, const char *fmt, ...) /*lint --e{506} Don't issue warnings about constant value booleans */ /*lint --e{774} Don't issue warnings boolean within 'if' always evaluates false/true */ if (sizeof(x)==H5_SIZEOF_INT) { - HDstrcat(format_templ, "d"); + HDstrcat(format_templ, "u"); } else if (sizeof(x)==H5_SIZEOF_LONG) { - HDstrcat(format_templ, "ld"); + HDstrcat(format_templ, "lu"); } else if (sizeof(x)==H5_SIZEOF_LONG_LONG) { HDstrcat(format_templ, H5_PRINTF_LL_WIDTH); - HDstrcat(format_templ, "d"); + HDstrcat(format_templ, "u"); } n = fprintf(stream, format_templ, x); } else { -- cgit v0.12