From 8a250fac15ecb2604461ea5753638269e342eb91 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Mon, 25 Jun 2012 16:13:44 -0400 Subject: [PATCH] Comment out a dead increment. Found by Clang's static analyzer. --- Python/formatter_unicode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index 4b0fd91489a..661bf192e9e 100644 --- a/Python/formatter_unicode.c +++ b/Python/formatter_unicode.c @@ -642,7 +642,7 @@ fill_number(_PyUnicodeWriter *writer, const NumberFieldWidths *spec, writer->buffer, writer->pos, digits, d_pos, spec->n_remainder); writer->pos += spec->n_remainder; - d_pos += spec->n_remainder; + /* d_pos += spec->n_remainder; */ } if (spec->n_rpadding) {