From: Guido van Rossum Date: Wed, 12 Aug 1992 15:27:32 +0000 (+0000) Subject: To ignore a call, cast it to (void), not to (void *)... X-Git-Tag: v0.9.8~242 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=df72a655b9c51028205141c918431a3d6542d205;p=thirdparty%2FPython%2Fcpython.git To ignore a call, cast it to (void), not to (void *)... --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index c8921da2fda1..08d1dbe98615 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -373,7 +373,7 @@ goaway(sts) cleanup actions usually done (these are mostly for debugging anyway). */ - (void *) save_thread(); + (void) save_thread(); donecalls(); exit_prog(sts);