summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>2002-03-28 21:05:38 (GMT)
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>2002-03-28 21:05:38 (GMT)
commitbd02b14255f99feef90121cf654989b9fe827210 (patch)
treed3528327f78f2daeb74906977920889df712b33d /Objects
parent78662cf9a1d2e5b9dbdc294db5536645cba23cef (diff)
downloadcpython-bd02b14255f99feef90121cf654989b9fe827210.zip
cpython-bd02b14255f99feef90121cf654989b9fe827210.tar.gz
cpython-bd02b14255f99feef90121cf654989b9fe827210.tar.bz2
Add missing "void" to function.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/obmalloc.c2
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;
}