Commit c8a9688a authored by Michael W. Hudson's avatar Michael W. Hudson

Fix *really* embarrassing typo reported by Raymond Hettinger.

parent 60b51d7b
...@@ -888,7 +888,7 @@ tracer_callback(ProfilerObject *self, PyFrameObject *frame, int what, ...@@ -888,7 +888,7 @@ tracer_callback(ProfilerObject *self, PyFrameObject *frame, int what,
case PyTrace_LINE: case PyTrace_LINE:
if (self->linetimings) if (self->linetimings)
return pack_lineno_tdelta(self, frame->f_lineno), return pack_lineno_tdelta(self, frame->f_lineno,
get_tdelta(self)); get_tdelta(self));
else else
return pack_lineno(self, frame->f_lineno); return pack_lineno(self, frame->f_lineno);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment