[PATCH] dm mirror: remove trailing space from table
authorJonathan Brassow <[email protected]>
Tue, 3 Oct 2006 08:15:32 +0000 (01:15 -0700)
committerLinus Torvalds <[email protected]>
Tue, 3 Oct 2006 15:04:15 +0000 (08:04 -0700)
Remove trailing space from 'dmsetup table' output.

Signed-off-by: Jonathan Brassow <[email protected]>
Signed-off-by: Alasdair G Kergon <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/md/dm-raid1.c

index c54de989eb005e74738800557f37f1ce0459753f..659224cb7c533d6a7dba75e84cf03ab2ced13a0c 100644 (file)
@@ -1213,9 +1213,9 @@ static int mirror_status(struct dm_target *ti, status_type_t type,
                break;
 
        case STATUSTYPE_TABLE:
-               DMEMIT("%d ", ms->nr_mirrors);
+               DMEMIT("%d", ms->nr_mirrors);
                for (m = 0; m < ms->nr_mirrors; m++)
-                       DMEMIT("%s %llu ", ms->mirror[m].dev->name,
+                       DMEMIT(" %s %llu", ms->mirror[m].dev->name,
                                (unsigned long long)ms->mirror[m].offset);
        }