From: Brett Cannon Date: Wed, 5 May 2010 20:16:09 +0000 (+0000) Subject: Remove an unneeded variable increment. X-Git-Tag: v2.7b2~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f38175cbc3329ffa63cf46c584d2d2b334484ae;p=python Remove an unneeded variable increment. Found using Clang's static analyzer. --- diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 3f76e91ff2..ab7cfeb751 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -2478,7 +2478,6 @@ _PyFloat_Pack8(double x, unsigned char *p, int le) /* Eighth byte */ *p = flo & 0xFF; - p += incr; /* Done */ return 0;