summaryrefslogtreecommitdiff
path: root/send-dump.c
diff options
context:
space:
mode:
Diffstat (limited to 'send-dump.c')
-rw-r--r--send-dump.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/send-dump.c b/send-dump.c
index 67f79779..1591e0cc 100644
--- a/send-dump.c
+++ b/send-dump.c
@@ -116,9 +116,10 @@ static int __print_dump(int subvol, void *user, const char *path,
putchar('\n');
return 0;
}
- /* Short paths ale aligned to 32 chars */
- while (ret++ < 32)
+ /* Short paths are aligned to 32 chars; longer paths get a single space */
+ do {
putchar(' ');
+ } while (++ret < 32);
va_start(args, fmt);
/* Operation specified ones */
vprintf(fmt, args);