diff --git a/cmd/splat.c b/cmd/splat.c index 9b2bb417a9..3fefe9739b 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); }