commit | 26ca925838556369ecde923ad01509a2f10afcc2 | [log] [tgz] |
---|---|---|
author | Jeremy Hylton <jeremy@alum.mit.edu> | Fri Mar 16 14:49:11 2007 +0000 |
committer | Jeremy Hylton <jeremy@alum.mit.edu> | Fri Mar 16 14:49:11 2007 +0000 |
tree | 2a48c73242c46b7fd9b67fc6f67dcf02150c3c48 | |
parent | 594965d17a6072dd1e1cbdd50602c71ca7395670 [diff] [blame] |
Remove warning: funcion declaration isn't a prototype
diff --git a/Objects/object.c b/Objects/object.c index 1b37a8d..9e25467 100644 --- a/Objects/object.c +++ b/Objects/object.c
@@ -1666,7 +1666,7 @@ /* Helper for PyObject_Dir without arguments: returns the local scope. */ static PyObject * -_dir_locals() +_dir_locals(void) { PyObject *names; PyObject *locals = PyEval_GetLocals(); @@ -2209,4 +2209,3 @@ #ifdef __cplusplus } #endif -