sort: fix whitespace

This commit is contained in:
Emil J. Tywoniak 2026-06-26 17:10:06 +02:00
parent 33f341f697
commit 5a33f45181
1 changed files with 3 additions and 3 deletions

View File

@ -17,9 +17,9 @@ struct SortPass : Pass {
void execute(std::vector<std::string> args, RTLIL::Design *d) override
{
log_header(d, "Executing SORT pass.\n");
if (args.size() != 1)
log_cmd_error("This pass takes no arguments.\n");
d->sort();
if (args.size() != 1)
log_cmd_error("This pass takes no arguments.\n");
d->sort();
}
} SortPass;