From d33ff212a7b5291a8dfa1d8903b5e9456c982a24 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Thu, 6 Oct 2022 14:55:49 +0200 Subject: [PATCH] Fix double @@ in attribute listing. --- src/compiler/compiler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/compiler.c b/src/compiler/compiler.c index 3012e7bca..df39484a3 100644 --- a/src/compiler/compiler.c +++ b/src/compiler/compiler.c @@ -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)