projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
695368a
)
[PATCH] dm mirror: remove trailing space from table
author
Jonathan Brassow
<
[email protected]
>
Tue, 3 Oct 2006 08:15:32 +0000
(
01:15
-0700)
committer
Linus 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
patch
|
blob
|
history
diff --git
a/drivers/md/dm-raid1.c
b/drivers/md/dm-raid1.c
index c54de989eb005e74738800557f37f1ce0459753f..659224cb7c533d6a7dba75e84cf03ab2ced13a0c 100644
(file)
--- a/
drivers/md/dm-raid1.c
+++ b/
drivers/md/dm-raid1.c
@@
-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);
}