diff options
author | Georg Brandl <georg@python.org> | 2009-05-01 08:51:37 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-01 08:51:37 (GMT) |
commit | ca87fa5a5b650de2d4b5cb04fb5847cf631e75eb (patch) | |
tree | 558c0535eebfb55a97a627077493d3c23fde9640 /Objects | |
parent | 4af40d21737b073b09e491aa4923e2ae637817d7 (diff) | |
download | cpython-ca87fa5a5b650de2d4b5cb04fb5847cf631e75eb.zip cpython-ca87fa5a5b650de2d4b5cb04fb5847cf631e75eb.tar.gz cpython-ca87fa5a5b650de2d4b5cb04fb5847cf631e75eb.tar.bz2 |
#5889: remove comma at the end of a list that some C compilers don't like.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/stringlib/string_format.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringlib/string_format.h b/Objects/stringlib/string_format.h index cc7c66f..ce7c909 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 */ |