aboutsummaryrefslogtreecommitdiffstats
path: root/tap-gsm_astat.c
diff options
context:
space:
mode:
authorlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2006-02-11 13:05:24 +0000
committerlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2006-02-11 13:05:24 +0000
commit4cf0965e67b7901ce372f9a41e815d99b3d69902 (patch)
tree04149b75555afc2d39791e321970f76b1bcaca38 /tap-gsm_astat.c
parent4eeeb7d9231419272efd9b32edcdec2f0d1591c7 (diff)
add an userdata argument to register_stat_cmd_arg() and its callback to use the callback for multiple registrations.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17252 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-gsm_astat.c')
-rw-r--r--tap-gsm_astat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tap-gsm_astat.c b/tap-gsm_astat.c
index 3d90d7c45d..f461e0d5f5 100644
--- a/tap-gsm_astat.c
+++ b/tap-gsm_astat.c
@@ -270,7 +270,7 @@ gsm_a_stat_draw(
static void
-gsm_a_stat_init(const char *optarg _U_)
+gsm_a_stat_init(const char *optarg _U_,void* userdata _U_)
{
gsm_a_stat_t *stat_p;
GString *err_p;
@@ -298,5 +298,5 @@ gsm_a_stat_init(const char *optarg _U_)
void
register_tap_listener_gsm_astat(void)
{
- register_stat_cmd_arg("gsm_a,", gsm_a_stat_init);
+ register_stat_cmd_arg("gsm_a,", gsm_a_stat_init,NULL);
}