diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-23 04:11:38 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-23 04:11:38 +0000 |
commit | d3f91908dd2c2ab79d16bfe235da34f2fc19c114 (patch) | |
tree | 6b34bb15ce35f8c3874df6480677701e792f41a5 /Modules/almodule.c | |
parent | add boilerplate "What's New" document so the docs will build (diff) | |
download | cpython-d3f91908dd2c2ab79d16bfe235da34f2fc19c114.tar.gz cpython-d3f91908dd2c2ab79d16bfe235da34f2fc19c114.tar.bz2 cpython-d3f91908dd2c2ab79d16bfe235da34f2fc19c114.zip |
Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if anyone cares.
Diffstat (limited to 'Modules/almodule.c')
-rw-r--r-- | Modules/almodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/almodule.c b/Modules/almodule.c index fbeb13a6302..0a45d2e0c02 100644 --- a/Modules/almodule.c +++ b/Modules/almodule.c @@ -1686,7 +1686,7 @@ al_GetParamInfo(PyObject *self, PyObject *args) { int res, param; ALparamInfo pinfo; - PyObject *v, *item;; + PyObject *v, *item; if (!PyArg_ParseTuple(args, "ii:GetParamInfo", &res, ¶m)) return NULL; |