commit fe9525d105f24071d3cbc3bbf973126645e0fac9 from: Alexander Barton date: Sun Jul 24 21:06:51 2005 UTC Eliminate some compiler warnings ("unused parameter"). [from HEAD] commit - 5b29518ae59e44ab8ef26a19dc484fa1608d1d0e commit + fe9525d105f24071d3cbc3bbf973126645e0fac9 blob - e0df6d8a0bc12bec26be4e13aa4d51a423c36d43 blob + 6dd9672938e2dc345844cbc7c27e301a4b5c2f69 --- src/ngircd/parse.c +++ src/ngircd/parse.c @@ -12,7 +12,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: parse.c,v 1.63 2005/06/24 20:56:46 alex Exp $"; +static char UNUSED id[] = "$Id: parse.c,v 1.63.2.1 2005/07/24 21:06:51 alex Exp $"; /** * @file @@ -317,7 +317,7 @@ Validate_Prefix( CONN_ID Idx, REQUEST *Req, bool *Clos LOCAL bool -Validate_Command( CONN_ID Idx, REQUEST *Req, bool *Closed ) +Validate_Command( UNUSED CONN_ID Idx, UNUSED REQUEST *Req, bool *Closed ) { assert( Idx >= 0 ); assert( Req != NULL ); @@ -328,7 +328,7 @@ Validate_Command( CONN_ID Idx, REQUEST *Req, bool *Clo LOCAL bool -Validate_Args( CONN_ID Idx, REQUEST *Req, bool *Closed ) +Validate_Args( UNUSED CONN_ID Idx, UNUSED REQUEST *Req, bool *Closed ) { assert( Idx >= 0 ); assert( Req != NULL );