diff options
Diffstat (limited to 'tools/h5ls.c')
-rw-r--r-- | tools/h5ls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5ls.c b/tools/h5ls.c index 1e08711..1648620 100644 --- a/tools/h5ls.c +++ b/tools/h5ls.c @@ -1448,10 +1448,10 @@ list (hid_t group, const char *name, void *_iter) fullname = fix_name(iter->container, name); if (fullname_g) { n = display_string(stdout, fullname, TRUE); - printf("%*s", MAX(0, 25-n), ""); + printf("%*s ", MAX(0, 24-n), ""); } else { n = display_string(stdout, name, TRUE); - printf("%*s", MAX(0, 25-n), ""); + printf("%*s ", MAX(0, 24-n), ""); } /* Get object information */ |