]> granicus.if.org Git - python/commitdiff
Fix *really* embarrassing typo reported by Raymond Hettinger.
authorMichael W. Hudson <mwh@python.net>
Wed, 11 Sep 2002 17:09:45 +0000 (17:09 +0000)
committerMichael W. Hudson <mwh@python.net>
Wed, 11 Sep 2002 17:09:45 +0000 (17:09 +0000)
Modules/_hotshot.c

index e12e5e5bf874de9cccddea95cf6df4616e20e1f1..bd089191142ea9ec15c34f33033b4221132f112c 100644 (file)
@@ -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);