diff options
Diffstat (limited to 'tap-h225counter.c')
-rw-r--r-- | tap-h225counter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tap-h225counter.c b/tap-h225counter.c index 93773c69eb..35e83b5628 100644 --- a/tap-h225counter.c +++ b/tap-h225counter.c @@ -134,10 +134,10 @@ h225counter_reset(void *phs) } static int -h225counter_packet(void *phs, packet_info *pinfo _U_, epan_dissect_t *edt _U_, void *phi) +h225counter_packet(void *phs, packet_info *pinfo _U_, epan_dissect_t *edt _U_, const void *phi) { h225counter_t *hs=(h225counter_t *)phs; - h225_packet_info *pi=phi; + const h225_packet_info *pi=phi; switch (pi->msg_type) { |