From 7339f4c72d2eaf9fef2416d3328207dcc655f578 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 10 Jan 2001 17:09:00 +0000 Subject: Fix weird typo caused by ANSIfication (nobody bothered to test it since! :-( ). --- Demo/embed/demo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v0.12