From 71217a80071adae12b53253e3025b2220e6c89f5 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 1 Jan 2005 02:57:02 +0000 Subject: As we've made the tap_specific_data field of a tap_packet_t structure a const pointer (so that we don't get complaints when we make the tap-specific data argument to "tap_queue_packet()" a const pointer, allowing dissectors to hand const data to a tap without a complaint), we should make the tap per-packet function take a const pointer as an argument as well. Do so. In some taps, use _U_, or actually use the argument, rather than sticking in dummy "X = X" assignments to fake use of parameters. (This means that the tap functions in question no longer have the notion that they act on a particular static structure wired in.) svn path=/trunk/; revision=12910 --- tap-protohierstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tap-protohierstat.c') diff --git a/tap-protohierstat.c b/tap-protohierstat.c index bc074c4c37..039f532896 100644 --- a/tap-protohierstat.c +++ b/tap-protohierstat.c @@ -71,7 +71,7 @@ new_phs_t(phs_t *parent) static int -protohierstat_packet(void *prs, packet_info *pinfo, epan_dissect_t *edt, void *dummy _U_) +protohierstat_packet(void *prs, packet_info *pinfo, epan_dissect_t *edt, const void *dummy _U_) { phs_t *rs=prs; phs_t *tmprs; -- cgit v1.2.1