diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-03-28 21:05:38 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-03-28 21:05:38 (GMT) |
commit | bd02b14255f99feef90121cf654989b9fe827210 (patch) | |
tree | d3528327f78f2daeb74906977920889df712b33d /Objects | |
parent | 78662cf9a1d2e5b9dbdc294db5536645cba23cef (diff) | |
download | cpython-bd02b14255f99feef90121cf654989b9fe827210.zip cpython-bd02b14255f99feef90121cf654989b9fe827210.tar.gz cpython-bd02b14255f99feef90121cf654989b9fe827210.tar.bz2 |
Add missing "void" to function.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/obmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index f409ecd..e5ad0bc 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c @@ -695,7 +695,7 @@ static ulong serialno = 0; /* incremented on each debug {m,re}alloc */ to supply a single place to set a breakpoint. */ static void -bumpserialno() +bumpserialno(void) { ++serialno; } |