From: Georg Brandl Date: Fri, 1 May 2009 08:51:37 +0000 (+0000) Subject: #5889: remove comma at the end of a list that some C compilers don't like. X-Git-Tag: v2.7a1~1326 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca87fa5a5b650de2d4b5cb04fb5847cf631e75eb;p=thirdparty%2FPython%2Fcpython.git #5889: remove comma at the end of a list that some C compilers don't like. --- diff --git a/Objects/stringlib/string_format.h b/Objects/stringlib/string_format.h index cc7c66fba14d..ce7c90967bfe 100644 --- a/Objects/stringlib/string_format.h +++ b/Objects/stringlib/string_format.h @@ -34,7 +34,7 @@ typedef struct { typedef enum { ANS_INIT, ANS_AUTO, - ANS_MANUAL, + ANS_MANUAL } AutoNumberState; /* Keep track if we're auto-numbering fields */ /* Keeps track of our auto-numbering state, and which number field we're on */