diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-11 23:19:34 -0400 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-11 23:19:34 -0400 |
commit | f487a005d6154e041054d41dbf16bb692af36af9 (patch) | |
tree | 41c74812d45feb0ae624d6fbcdc390705a90b7f6 /Python/ceval.c | |
parent | 7544508f0245173bff5866aa1598c8f6cce1fc5f (diff) | |
download | cpython-git-f487a005d6154e041054d41dbf16bb692af36af9.tar.gz |
Fix warnings for PyEval_GetCoroutineWrapper
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 8acd08201e..77085c25a0 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -4414,7 +4414,7 @@ PyEval_SetCoroutineWrapper(PyObject *wrapper) } PyObject * -PyEval_GetCoroutineWrapper() +PyEval_GetCoroutineWrapper(void) { PyThreadState *tstate = PyThreadState_GET(); return tstate->coroutine_wrapper; |