Remove an unneeded variable increment.

Found using Clang's static analyzer.
This commit is contained in:
Brett Cannon 2010-05-05 20:16:09 +00:00
parent 7a4cd7e1e2
commit 6f38175cbc
1 changed files with 0 additions and 1 deletions

View File

@ -2478,7 +2478,6 @@ _PyFloat_Pack8(double x, unsigned char *p, int le)
/* Eighth byte */
*p = flo & 0xFF;
p += incr;
/* Done */
return 0;