[pioasm] Fix build warning due to extra parameters (#1625)

This commit is contained in:
Patrick Plenefisch 2024-05-19 17:48:53 -04:00 committed by GitHub
parent 0d56f52b7b
commit 7d238ea2cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -102,7 +102,7 @@ struct json_output : public output_format {
program.sideset_opt ? "true" : "false",
program.sideset_pindirs ? "true" : "false");
} else {
fprintf(out, "%s\"sideset\": {\"size\": 0, \"optional\": false, \"pindirs\": false},\n", tabs, program.origin.get());
fprintf(out, "%s\"sideset\": {\"size\": 0, \"optional\": false, \"pindirs\": false},\n", tabs);
}
output_symbols(out, true, tabs, program.symbols);