From df72a655b9c51028205141c918431a3d6542d205 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 12 Aug 1992 15:27:32 +0000 Subject: [PATCH] To ignore a call, cast it to (void), not to (void *)... --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/pythonrun.c b/Python/pythonrun.c index c8921da2fda..08d1dbe9861 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);