Mercurial > hg > xemacs-beta
diff src/nas.c @ 2286:04bc9d2f42c7
[xemacs-hg @ 2004-09-20 19:18:55 by james]
Mark all unused parameters as unused. Also eliminate some unneeded local
variables.
author | james |
---|---|
date | Mon, 20 Sep 2004 19:20:08 +0000 |
parents | 13181f978082 |
children | ecf1ebac70d8 |
line wrap: on
line diff
--- a/src/nas.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/nas.c Mon Sep 20 19:20:08 2004 +0000 @@ -252,9 +252,9 @@ \********************************************************************/ static void -doneCB (AuServer *auserver, - AuEventHandlerRec *handler, - AuEvent *ev, +doneCB (AuServer *UNUSED (auserver), + AuEventHandlerRec *UNUSED (handler), + AuEvent *UNUSED (ev), AuPointer data) { int *in_play_p = (int *) data; @@ -593,14 +593,14 @@ } SIGTYPE -sigpipe_handle (int signo) +sigpipe_handle (int UNUSED (signo)) { CatchIoErrorAndJump (NULL); } static AuBool CatchErrorAndJump (AuServer *old_aud, - AuErrorEvent *event) + AuErrorEvent *UNUSED (event)) { return CatchIoErrorAndJump (old_aud); }