diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-09 17:58:07 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-09 17:58:07 (GMT) |
commit | 2bbf08c3fc35ca5d60a7618c73069af3e7476e85 (patch) | |
tree | a08bfd8c5fba6ec5fe6949369b4e819cc1681d63 /src | |
parent | b68be568be0f1d2e022c13a8c0e205c68d645503 (diff) | |
download | hdf5-2bbf08c3fc35ca5d60a7618c73069af3e7476e85.zip hdf5-2bbf08c3fc35ca5d60a7618c73069af3e7476e85.tar.gz hdf5-2bbf08c3fc35ca5d60a7618c73069af3e7476e85.tar.bz2 |
[svn-r7188] Purpose:
Code cleanup
Description:
Back out an overly aggressive linting...
Solution:
Platforms tested:
h5committested
Diffstat (limited to 'src')
-rw-r--r-- | src/H5.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -976,7 +976,7 @@ HDfprintf(FILE *stream, const char *fmt, ...) case 'd': case 'i': if (!HDstrcmp(modifier, "h")) { - short x = va_arg (ap, short); + short x = (short)va_arg (ap, int); n = fprintf (stream, format_templ, x); } else if (!*modifier) { int x = va_arg (ap, int); @@ -995,7 +995,7 @@ HDfprintf(FILE *stream, const char *fmt, ...) case 'x': case 'X': if (!HDstrcmp (modifier, "h")) { - unsigned short x = va_arg (ap, unsigned short); + unsigned short x = (unsigned short)va_arg (ap, unsigned int); n = fprintf (stream, format_templ, x); } else if (!*modifier) { unsigned int x = va_arg (ap, unsigned int); |