From a8ac944924281a2604c1a3329465705fe30bab68 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Thu, 6 May 2010 17:56:36 +0000 Subject: [PATCH] Add back in a line that was unneeded which advanced a pointer, but commented out as it is currently unneeded. This effectively adds back in the line removed in r80809 as a comment. --- Objects/floatobject.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Objects/floatobject.c b/Objects/floatobject.c index ab7cfeb751e..d6a5a351353 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -2478,6 +2478,7 @@ _PyFloat_Pack8(double x, unsigned char *p, int le) /* Eighth byte */ *p = flo & 0xFF; + /* p += incr; Unneeded (for now) */ /* Done */ return 0;