Skip to content

Commit

Permalink
[pioasm] Fix build warning due to extra parameters (#1625)
Browse files Browse the repository at this point in the history
  • Loading branch information
byteit101 authored May 19, 2024
1 parent 0d56f52 commit 7d238ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/pioasm/json_output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7d238ea

Please sign in to comment.