summaryrefslogtreecommitdiffstats
path: root/Demo
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-01-10 17:09:00 (GMT)
committerGuido van Rossum <guido@python.org>2001-01-10 17:09:00 (GMT)
commit7339f4c72d2eaf9fef2416d3328207dcc655f578 (patch)
tree9bc6fe954957d130ec6299a773cf29822b905a1f /Demo
parentef34274d3bec2ac513f6e67bca9eb2ecda5a0cd4 (diff)
downloadcpython-7339f4c72d2eaf9fef2416d3328207dcc655f578.zip
cpython-7339f4c72d2eaf9fef2416d3328207dcc655f578.tar.gz
cpython-7339f4c72d2eaf9fef2416d3328207dcc655f578.tar.bz2
Fix weird typo caused by ANSIfication (nobody bothered to test it
since! :-( ).
Diffstat (limited to 'Demo')
-rw-r--r--Demo/embed/demo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/embed/demo.c b/Demo/embed/demo.c
index 26df355..581365f 100644
--- a/Demo/embed/demo.c
+++ b/Demo/embed/demo.c
@@ -46,7 +46,7 @@ main(int argc, char **argv)
/* 'self' is not used */
static PyObject *
-xyzzy_foo(PyObject *self, PyObjecT *args)
+xyzzy_foo(PyObject *self, PyObject* args)
{
if (!PyArg_ParseTuple(args, ""))
return NULL;