aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h248_annex_e.c
diff options
context:
space:
mode:
authorpascal <pascal@localhost>2012-04-10 14:55:34 +0000
committerpascal <pascal@localhost>2012-04-10 14:55:34 +0000
commit6c29b9f93673e5ffee4a4a9a025bc47f59f01f01 (patch)
tree236a1f416d75c497f3ad0c255bd80b74486763da /epan/dissectors/packet-h248_annex_e.c
parent7135c935cdd70719471fb23113d65e9999da7df8 (diff)
Squelch a "dereferencing type-punned pointer" warning when compiling with GCC 4.1.3 (h248_pkg_sig_t and h248_pkg_evt_t structures are identical)
svn path=/trunk/; revision=42007
Diffstat (limited to 'epan/dissectors/packet-h248_annex_e.c')
-rw-r--r--epan/dissectors/packet-h248_annex_e.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-h248_annex_e.c b/epan/dissectors/packet-h248_annex_e.c
index e024974581..56cb73f35f 100644
--- a/epan/dissectors/packet-h248_annex_e.c
+++ b/epan/dissectors/packet-h248_annex_e.c
@@ -676,7 +676,7 @@ static h248_package_t h248_pkg_cd = {
h248_pkg_cg_sig_cd_evt_vals,
NULL,
NULL,NULL,
- (h248_pkg_evt_t *)h248_pkg_cg_signals_cd_events,
+ (h248_pkg_evt_t *)(void*)h248_pkg_cg_signals_cd_events,
NULL
};