From: Brett Cannon Date: Thu, 6 May 2010 17:56:36 +0000 (+0000) Subject: Add back in a line that was unneeded which advanced a pointer, but commented X-Git-Tag: v2.7b2~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8ac944924281a2604c1a3329465705fe30bab68;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Objects/floatobject.c b/Objects/floatobject.c index ab7cfeb751e9..d6a5a3513533 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;