comparison 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
comparison
equal deleted inserted replaced
2285:914c5afaac33 2286:04bc9d2f42c7
250 * Callback which is run when the sound finishes playing. * 250 * Callback which is run when the sound finishes playing. *
251 * * 251 * *
252 \********************************************************************/ 252 \********************************************************************/
253 253
254 static void 254 static void
255 doneCB (AuServer *auserver, 255 doneCB (AuServer *UNUSED (auserver),
256 AuEventHandlerRec *handler, 256 AuEventHandlerRec *UNUSED (handler),
257 AuEvent *ev, 257 AuEvent *UNUSED (ev),
258 AuPointer data) 258 AuPointer data)
259 { 259 {
260 int *in_play_p = (int *) data; 260 int *in_play_p = (int *) data;
261 261
262 (*in_play_p) --; 262 (*in_play_p) --;
591 #endif /* XTEVENTS */ 591 #endif /* XTEVENTS */
592 return 0; 592 return 0;
593 } 593 }
594 594
595 SIGTYPE 595 SIGTYPE
596 sigpipe_handle (int signo) 596 sigpipe_handle (int UNUSED (signo))
597 { 597 {
598 CatchIoErrorAndJump (NULL); 598 CatchIoErrorAndJump (NULL);
599 } 599 }
600 600
601 static AuBool 601 static AuBool
602 CatchErrorAndJump (AuServer *old_aud, 602 CatchErrorAndJump (AuServer *old_aud,
603 AuErrorEvent *event) 603 AuErrorEvent *UNUSED (event))
604 { 604 {
605 return CatchIoErrorAndJump (old_aud); 605 return CatchIoErrorAndJump (old_aud);
606 } 606 }
607 607
608 #endif /* ROBUST_PLAY */ 608 #endif /* ROBUST_PLAY */