commit | 6f38175cbc3329ffa63cf46c584d2d2b334484ae | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Wed May 05 20:16:09 2010 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Wed May 05 20:16:09 2010 +0000 |
tree | 19610ac7f3a2d7042a082c55d5fd67a7aa887b32 | |
parent | 7a4cd7e1e2cff1d3a3ef079e47f0b0f833dae1de [diff] |
Remove an unneeded variable increment. Found using Clang's static analyzer.
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 @@ /* Eighth byte */ *p = flo & 0xFF; - p += incr; /* Done */ return 0;