summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Brassow <jbrassow@redhat.com>2009-09-04 20:40:28 +0100
committerAlasdair G Kergon <agk@redhat.com>2009-09-04 20:40:28 +0100
commit4142a969175302bc843d1505133488bfdbfa4732 (patch)
tree737cce5d0dc543dacefd7bc2fa27fc43b118318a
parent40bea431274c247425e7f5970d796ff7b37a2b22 (diff)
downloadlinux-3.10-4142a969175302bc843d1505133488bfdbfa4732.tar.gz
linux-3.10-4142a969175302bc843d1505133488bfdbfa4732.tar.bz2
linux-3.10-4142a969175302bc843d1505133488bfdbfa4732.zip
dm log: fix userspace status output
Fix 'dmsetup table' output. There is a missing ' ' at the end of the string causing two words to run together. Signed-off-by: Jonathan Brassow <jbrassow@redhat.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
-rw-r--r--drivers/md/dm-log-userspace-base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-log-userspace-base.c b/drivers/md/dm-log-userspace-base.c
index e69b9656099..2f2a244e110 100644
--- a/drivers/md/dm-log-userspace-base.c
+++ b/drivers/md/dm-log-userspace-base.c
@@ -577,7 +577,7 @@ static int userspace_status(struct dm_dirty_log *log, status_type_t status_type,
break;
case STATUSTYPE_TABLE:
sz = 0;
- DMEMIT("%s %u %s %s", log->type->name, lc->usr_argc + 1,
+ DMEMIT("%s %u %s %s ", log->type->name, lc->usr_argc + 1,
lc->uuid, lc->usr_argv_str);
break;
}