mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-14 06:50:28 +01:00
python/retrace: Process the call no passed to --to option inclusively.
This commit is contained in:
parent
cf7e8fbc2e
commit
2ba98efdf6
1 changed files with 1 additions and 1 deletions
|
|
@ -677,7 +677,7 @@ class Interpreter(parser.TraceDumper):
|
|||
self.interpret_call(call)
|
||||
|
||||
def handle_call(self, call):
|
||||
if self.options.stop and call.no >= self.options.stop:
|
||||
if self.options.stop and call.no > self.options.stop:
|
||||
sys.exit(0)
|
||||
|
||||
if (call.klass, call.method) in self.ignore_calls:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue