summaryrefslogtreecommitdiffstats
path: root/tools/h5ls
diff options
context:
space:
mode:
Diffstat (limited to 'tools/h5ls')
-rw-r--r--tools/h5ls/h5ls.c6
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;
}