]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
To ignore a call, cast it to (void), not to (void *)...
authorGuido van Rossum <guido@python.org>
Wed, 12 Aug 1992 15:27:32 +0000 (15:27 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 12 Aug 1992 15:27:32 +0000 (15:27 +0000)
Python/pythonrun.c

index c8921da2fda1de92a4ec194cfee78bf5ef422a16..08d1dbe98615e68842cd05d461d2f6a52a09dc26 100644 (file)
@@ -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);