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.
This commit is contained in:
Brett Cannon 2010-05-06 17:56:36 +00:00
parent acab940c70
commit a8ac944924
1 changed files with 1 additions and 0 deletions

View File

@ -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;