Fix double @@ in attribute listing.

This commit is contained in:
Christoffer Lerno
2022-10-06 14:55:49 +02:00
parent ee533c5500
commit d33ff212a7

View File

@@ -582,7 +582,7 @@ void print_syntax(BuildOptions *options)
{
for (int i = 0; i < NUMBER_OF_ATTRIBUTES; i++)
{
printf("%2d @%s\n", i + 1, attribute_list[i]);
printf("%2d %s\n", i + 1, attribute_list[i]);
}
}
if (options->print_builtins)