diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-06-13 21:42:51 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-06-13 21:42:51 (GMT) |
commit | 4178515035af42b6343bcd3e5df92d052c6f13dd (patch) | |
tree | f0020d7d952dae622b0b9e0245d112ad519513b9 /Objects | |
parent | e7b8ecf196f5d20eb9189fb9930335a2bebe1cc7 (diff) | |
download | cpython-4178515035af42b6343bcd3e5df92d052c6f13dd.zip cpython-4178515035af42b6343bcd3e5df92d052c6f13dd.tar.gz cpython-4178515035af42b6343bcd3e5df92d052c6f13dd.tar.bz2 |
SF # 533070 Silence AIX C Compiler Warnings
Warning caused by using &func. & is not necessary.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c index b196d14..206746b 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -1953,7 +1953,7 @@ PyTypeObject *_Py_cobject_hack = &PyCObject_Type; /* Hack to force loading of abstract.o */ -int (*_Py_abstract_hack)(PyObject *) = &PyObject_Size; +int (*_Py_abstract_hack)(PyObject *) = PyObject_Size; /* Python's malloc wrappers (see pymem.h) */ |