mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
use PROTO macro around fn prototype
This commit is contained in:
parent
599de5ab9f
commit
59461c7052
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ do_mkvalue(p_format, p_va)
|
|||
case 'S':
|
||||
case 'O':
|
||||
if (**p_format == '&') {
|
||||
typedef object *(*converter)(void *);
|
||||
typedef object *(*converter) PROTO((void *));
|
||||
converter func = va_arg(*p_va, converter);
|
||||
void *arg = va_arg(*p_va, void *);
|
||||
++*p_format;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue