summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-08-12 15:27:32 (GMT)
committerGuido van Rossum <guido@python.org>1992-08-12 15:27:32 (GMT)
commitdf72a655b9c51028205141c918431a3d6542d205 (patch)
treec2338a08399c938a371304ab985ffc13fd704f7b /Python
parent3562d52e93eb62bde062c30bff25df6c8cd8b139 (diff)
downloadcpython-df72a655b9c51028205141c918431a3d6542d205.zip
cpython-df72a655b9c51028205141c918431a3d6542d205.tar.gz
cpython-df72a655b9c51028205141c918431a3d6542d205.tar.bz2
To ignore a call, cast it to (void), not to (void *)...
Diffstat (limited to 'Python')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index c8921da..08d1dbe 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);