From: guy Date: Sun, 10 Nov 2002 20:37:31 +0000 (+0000) Subject: Mark an argument as unused, to squelch compiler warnings. X-Git-Tag: tcpdump-3.8-bp~306 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/51c0ee7a5e25e0f87d9df54e0c50f620bbbb4400 Mark an argument as unused, to squelch compiler warnings. --- diff --git a/print-radius.c b/print-radius.c index 88c80afe..cf620e86 100644 --- a/print-radius.c +++ b/print-radius.c @@ -44,7 +44,7 @@ #ifndef lint static const char rcsid[] = - "$Id: print-radius.c,v 1.17 2002-11-09 17:19:29 itojun Exp $"; + "$Id: print-radius.c,v 1.18 2002-11-10 20:37:31 guy Exp $"; #endif #ifdef HAVE_CONFIG_H @@ -646,7 +646,7 @@ print_attr_address(register u_char *data, u_int length, u_short attr_code ) /*************************************/ /* Returns nothing. */ /*************************************/ -static void print_attr_time(register u_char *data, u_int length, u_short attr_code) +static void print_attr_time(register u_char *data, u_int length, u_short attr_code _U_) { time_t attr_time; char string[26];