Commit 4bc49b49 by Philippe De Muyter Committed by Jeff Law

server.c (server_setup): Do not prefix function used as parameter with `&'.

        * fixinc/server.c (server_setup): Do not prefix function used as
        parameter with `&'.

From-SVN: r28578
parent cf52b2f7
Sat Aug 7 01:39:27 1999 Philippe De Muyter <phdm@macqel.be>
* fixinc/server.c (server_setup): Do not prefix function used as
parameter with `&'.
Sat Aug 7 00:21:20 1999 Richard Henderson <rth@cygnus.com>
* alpha.md (movhi and movqi patterns): Correct predicate for !BWX.
......
......@@ -221,7 +221,7 @@ server_setup ()
static int atexit_done = 0;
if (atexit_done++ == 0)
atexit (&close_server);
atexit (close_server);
signal (SIGPIPE, sig_handler);
signal (SIGALRM, sig_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