commit | b14b59fcf9325bc803763c4aad036cb12f9d7978 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Mon Sep 25 06:53:42 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Mon Sep 25 06:53:42 2006 +0000 |
tree | a88b449fb3efc4d79e7f093e2220e3efe3052c55 | |
parent | edd81b2402ae7e3b1c4aa24f28f46567674d3a75 [diff] [blame] |
Backport rev. 51987: superfluous semicola.
diff --git a/Modules/bz2module.c b/Modules/bz2module.c index 24b2489..27a3827 100644 --- a/Modules/bz2module.c +++ b/Modules/bz2module.c
@@ -1023,12 +1023,12 @@ case MODE_CLOSED: PyErr_SetString(PyExc_ValueError, "I/O operation on closed file"); - goto cleanup;; + goto cleanup; default: PyErr_SetString(PyExc_IOError, "seek works only while reading"); - goto cleanup;; + goto cleanup; } if (where == 2) {