Update passes/silimate/opt_compact_prefix.cc

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
Akash Levy 2026-06-02 01:15:18 -07:00 committed by GitHub
parent a730032f5f
commit 950cdf925c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -464,7 +464,7 @@ struct OptCompactPrefixPass : public Pass
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++) {
if (args[argidx] == "-max_width" && argidx + 1 < args.size()) {
max_width = std::stoi(args[++argidx]);
max_width = atoi(args[++argidx].c_str());
continue;
}
break;