diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2003-06-10 21:04:58 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2003-06-10 21:04:58 (GMT) |
commit | 67449f5c65efa0b1b2d17288a2387259ccd651d2 (patch) | |
tree | 3a92ecb1e88510650275f8d47e5c2283b75a4ca3 /tools/h5ls | |
parent | b6f348df6ea4bd829f8f2bf249d8fad5a6691bf0 (diff) | |
download | hdf5-67449f5c65efa0b1b2d17288a2387259ccd651d2.zip hdf5-67449f5c65efa0b1b2d17288a2387259ccd651d2.tar.gz hdf5-67449f5c65efa0b1b2d17288a2387259ccd651d2.tar.bz2 |
[svn-r7021] Purpose: bug fix
Description: H5Tget_native_type fails for multiple kinds of datatype on Cray; it fails
fix-length string type, too.
Platforms tested: Cray, h5committest
Diffstat (limited to 'tools/h5ls')
-rw-r--r-- | tools/h5ls/h5ls.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5ls/h5ls.c b/tools/h5ls/h5ls.c index bbf4991..d604c93 100644 --- a/tools/h5ls/h5ls.c +++ b/tools/h5ls/h5ls.c @@ -914,11 +914,11 @@ display_string_type(hid_t type, int UNUSED ind) } if (H5Tis_variable_str(type)) { - printf("variable-length "); + printf("variable-length"); } else { - printf("%lu-byte ", (unsigned long)H5Tget_size(type)); + printf("%lu-byte", (unsigned long)H5Tget_size(type)); } - printf("%s %s string", pad_s, cset_s); + printf(" %s %s string", pad_s, cset_s); return TRUE; } |