From: Neal Norwitz Date: Thu, 1 Jun 2006 05:32:49 +0000 (+0000) Subject: Remove ; at end of macro. There was a compiler recently that warned X-Git-Tag: v2.5b1~314 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b16e4e7860a7c1259bbc1776c937a019781f7f01;p=python Remove ; at end of macro. There was a compiler recently that warned about extra semi-colons. It may have been the HP C compiler. This file will trigger a bunch of those warnings now. --- diff --git a/Objects/stringobject.c b/Objects/stringobject.c index a13f45867d..a9803451a1 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -1363,7 +1363,7 @@ static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"}; count++; } /* Always force the list to the expected size. */ -#define FIX_PREALLOC_SIZE(list) ((PyListObject *)list)->ob_size = count; +#define FIX_PREALLOC_SIZE(list) ((PyListObject *)list)->ob_size = count #define SKIP_SPACE(s, i, len) { while (i