From d07377a897e3219f7ba2bef4aadd7028dc9c7ef4 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 13 Dec 2000 19:54:07 -0500 Subject: [svn-r3136] Purpose: Bug Fix Description: Moved check for float type ahead of double type, since they are the same size on Crays.. Platforms tested: Cray J90 (killeen) --- tools/h5tools.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/h5tools.c b/tools/h5tools.c index ed2ec14..125c87f 100644 --- a/tools/h5tools.c +++ b/tools/h5tools.c @@ -707,12 +707,12 @@ h5dump_sprint(h5dump_str_t *str/*in,out*/, const h5dump_t *info, for (i = 0; i < n; i++) h5dump_str_append(str, OPT(info->fmt_raw, "%02x"), ucp_vp[i]); - } else if (H5Tequal(type, H5T_NATIVE_DOUBLE)) { - memcpy(&tempdouble, vp, sizeof(double)); - h5dump_str_append(str, OPT(info->fmt_double, "%g"), tempdouble); } else if (H5Tequal(type, H5T_NATIVE_FLOAT)) { memcpy(&tempfloat, vp, sizeof(float)); h5dump_str_append(str, OPT(info->fmt_float, "%g"), tempfloat); + } else if (H5Tequal(type, H5T_NATIVE_DOUBLE)) { + memcpy(&tempdouble, vp, sizeof(double)); + h5dump_str_append(str, OPT(info->fmt_double, "%g"), tempdouble); } else if (info->ascii && (H5Tequal(type, H5T_NATIVE_SCHAR) || H5Tequal(type, H5T_NATIVE_UCHAR))) { if (ESCAPE_HTML == info->str_locale) { -- cgit v0.12