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:
parent
cf52b2f739
commit
4bc49b4998
2 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue