From: Brett Cannon Date: Wed, 5 May 2010 23:11:08 +0000 (+0000) Subject: Revert a change where an expression is not needed now, but could be in the future. X-Git-Tag: v2.7b2~53 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f4f0bf850bc99f5d70a4d8ffe1e0126d8c46b1ec;p=thirdparty%2FPython%2Fcpython.git Revert a change where an expression is not needed now, but could be in the future. --- diff --git a/Python/pystrtod.c b/Python/pystrtod.c index 16dac81ff61c..909e0210ea2c 100644 --- a/Python/pystrtod.c +++ b/Python/pystrtod.c @@ -1005,6 +1005,7 @@ format_float_short(double d, char format_code, /* shouldn't get here: Gay's code should always return something starting with a digit, an 'I', or 'N' */ strncpy(p, "ERR", 3); + p += 3; assert(0); } goto exit;