Remove useless EOL white space padding from `splat -l` command.
This commit is contained in:
parent
f250d90b5f
commit
c388a3ab26
|
@ -339,11 +339,10 @@ static void test_list(List l, int indent)
|
||||||
i = list_iterator_create(l);
|
i = list_iterator_create(l);
|
||||||
|
|
||||||
while ((test = list_next(i)))
|
while ((test = list_next(i)))
|
||||||
fprintf(stdout, "%*s0x%0*x %-*s %-*s\n",
|
fprintf(stdout, "%*s0x%0*x %-*s %s\n",
|
||||||
indent, "",
|
indent, "", 04, test->test_desc.id,
|
||||||
04, test->test_desc.id,
|
|
||||||
SPLAT_NAME_SIZE, test->test_desc.name,
|
SPLAT_NAME_SIZE, test->test_desc.name,
|
||||||
SPLAT_DESC_SIZE, test->test_desc.desc);
|
test->test_desc.desc);
|
||||||
|
|
||||||
list_iterator_destroy(i);
|
list_iterator_destroy(i);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue