diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-17 18:12:50 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-17 18:12:50 +0000 |
commit | 78182d275c22305e003d9b9effc2593166cae062 (patch) | |
tree | a318d83d64955da10ffcd9fcd020ad2b07b3abfa /Modules | |
parent | 6318b958586943991ee5b733e0bbfc72cfb8f301 (diff) | |
download | cpython-78182d275c22305e003d9b9effc2593166cae062.tar.gz |
Bug #132816: Compiler warning in PYEXPAT.C for extra ';'
Removed trailing ";" in instances of "};" closing code blocks.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/pyexpat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index 4f773517f8..39caab99a1 100644 --- a/Modules/pyexpat.c +++ b/Modules/pyexpat.c @@ -1080,9 +1080,9 @@ init_template_buffer(void) int i; for (i=0;i<256;i++) { template_buffer[i]=i; - }; + } template_buffer[256]=0; -}; +} int PyUnknownEncodingHandler(void *encodingHandlerData, @@ -1097,7 +1097,7 @@ XML_Encoding * info) if (_u_string==NULL) { return result; - }; + } for (i=0; i<256; i++) { Py_UNICODE c = _u_string->str[i] ; // Stupid to access directly, but fast @@ -1105,8 +1105,8 @@ XML_Encoding * info) info->map[i] = -1; } else { info->map[i] = c; - }; - }; + } + } info->data = NULL; info->convert = NULL; |