diff options
Diffstat (limited to 'tools/h5ls/h5ls.c')
-rw-r--r-- | tools/h5ls/h5ls.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/h5ls/h5ls.c b/tools/h5ls/h5ls.c index 8485821..b2d377d 100644 --- a/tools/h5ls/h5ls.c +++ b/tools/h5ls/h5ls.c @@ -320,8 +320,10 @@ display_native_type(hid_t type, int UNUSED ind) printf("native float"); } else if (H5Tequal(type, H5T_NATIVE_DOUBLE)) { printf("native double"); +#if H5_SIZEOF_LONG_DOUBLE !=0 } else if (H5Tequal(type, H5T_NATIVE_LDOUBLE)) { printf("native long double"); +#endif } else if (H5Tequal(type, H5T_NATIVE_INT8)) { printf("native int8_t"); } else if (H5Tequal(type, H5T_NATIVE_UINT8)) { |