From 6f38175cbc3329ffa63cf46c584d2d2b334484ae Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 5 May 2010 20:16:09 +0000 Subject: Remove an unneeded variable increment. Found using Clang's static analyzer. --- Objects/floatobject.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 3f76e91..ab7cfeb 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; -- cgit v0.12