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
This commit is contained in:
Philippe De Muyter 1999-08-07 09:41:17 +02:00 committed by Jeff Law
parent cf52b2f739
commit 4bc49b4998
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -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);