diff options
author | Chris Maynard <Christopher.Maynard@GTECH.COM> | 2011-04-05 20:50:49 +0000 |
---|---|---|
committer | Chris Maynard <Christopher.Maynard@GTECH.COM> | 2011-04-05 20:50:49 +0000 |
commit | 701f2053e6b356dc360e54b361bf2c73330335b1 (patch) | |
tree | 11470470a30564c7e1b8c35a91076c6fcba03a6c | |
parent | 595e5e1c1d150812de9cc0d1549acd0ed5d8770d (diff) | |
download | wireshark-701f2053e6b356dc360e54b361bf2c73330335b1.tar.gz wireshark-701f2053e6b356dc360e54b361bf2c73330335b1.tar.bz2 wireshark-701f2053e6b356dc360e54b361bf2c73330335b1.zip |
Mark pinfo as unused with _U_ to avoid compiler warning.
svn path=/trunk/; revision=36481
-rwxr-xr-x | tap-icmpstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-icmpstat.c b/tap-icmpstat.c index 8ff7ff4fe4..56b8813208 100755 --- a/tap-icmpstat.c +++ b/tap-icmpstat.c @@ -106,7 +106,7 @@ icmpstat_reset(void *tapdata) * !0: state has changed, call (*draw) sometime later */ static int -icmpstat_packet(void *tapdata, packet_info *pinfo, epan_dissect_t *edt _U_, const void *data) +icmpstat_packet(void *tapdata, packet_info *pinfo _U_, epan_dissect_t *edt _U_, const void *data) { icmpstat_t *icmpstat = tapdata; const icmp_transaction_t *trans = data; |