aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2009-03-18 11:56:42 -0700
committerBrian Behlendorf <[email protected]>2009-03-18 11:56:42 -0700
commitc388a3ab26bdd19a10c02dbb24981e6f482d0958 (patch)
treea98eee623b4c2d9562f35e3eba3e7625e6e1e463 /cmd
parentf250d90b5f1586cdee79d1612a1a4361ab69afe2 (diff)
Remove useless EOL white space padding from `splat -l` command.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/splat.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/cmd/splat.c b/cmd/splat.c
index 9b2bb417a..3fefe9739 100644
--- a/cmd/splat.c
+++ b/cmd/splat.c
@@ -339,11 +339,10 @@ static void test_list(List l, int indent)
i = list_iterator_create(l);
while ((test = list_next(i)))
- fprintf(stdout, "%*s0x%0*x %-*s %-*s\n",
- indent, "",
- 04, test->test_desc.id,
+ fprintf(stdout, "%*s0x%0*x %-*s %s\n",
+ indent, "", 04, test->test_desc.id,
SPLAT_NAME_SIZE, test->test_desc.name,
- SPLAT_DESC_SIZE, test->test_desc.desc);
+ test->test_desc.desc);
list_iterator_destroy(i);
}