mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:17:35 +00:00
ProfileViewer: Unbreak after Vector size_t changes
Another backwards iteration accident.
This commit is contained in:
parent
d61359ae91
commit
79e06e8308
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ void Profile::rebuild_tree()
|
|||
break;
|
||||
}
|
||||
} else {
|
||||
for (size_t i = sample.frames.size() - 1; i >= 0; --i) {
|
||||
for (ssize_t i = sample.frames.size() - 1; i >= 0; --i) {
|
||||
if (callback(sample.frames.at(i)) == IterationDecision::Break)
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue