From: Neil Schemenauer Date: Thu, 28 Mar 2002 21:05:38 +0000 (+0000) Subject: Add missing "void" to function. X-Git-Tag: v2.3c1~6287 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd02b14255f99feef90121cf654989b9fe827210;p=python Add missing "void" to function. --- diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index f409ecd0af..e5ad0bcf96 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; }