Kaydet (Commit) a5e54d02 authored tarafından Guido van Rossum's avatar Guido van Rossum

Use (void) to throw away a function result, not (void *) !

üst 0132f69c
...@@ -147,7 +147,7 @@ signal_handler(sig_num) ...@@ -147,7 +147,7 @@ signal_handler(sig_num)
return; return;
} }
#endif #endif
(void *)signal(sig_num, &signal_handler); (void)signal(sig_num, &signal_handler);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment