From 806d1c817aad83c3381355d7d56a0ae2a427c1ff Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Wed, 11 Sep 2002 17:09:45 +0000 Subject: [PATCH] Fix *really* embarrassing typo reported by Raymond Hettinger. --- Modules/_hotshot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_hotshot.c b/Modules/_hotshot.c index e12e5e5bf87..bd089191142 100644 --- a/Modules/_hotshot.c +++ b/Modules/_hotshot.c @@ -888,7 +888,7 @@ tracer_callback(ProfilerObject *self, PyFrameObject *frame, int what, case PyTrace_LINE: if (self->linetimings) - return pack_lineno_tdelta(self, frame->f_lineno), + return pack_lineno_tdelta(self, frame->f_lineno, get_tdelta(self)); else return pack_lineno(self, frame->f_lineno);