Remove useless EOL white space padding from `splat -l` command.

This commit is contained in:
Brian Behlendorf 2009-03-18 11:56:42 -07:00
parent f250d90b5f
commit c388a3ab26
1 changed files with 3 additions and 4 deletions

View File

@ -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);
}