summaryrefslogtreecommitdiff
path: root/tap-ansi_astat.c
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2006-02-11 13:05:24 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2006-02-11 13:05:24 +0000
commitfcf7b3789cec5595880d27e0109387e2d8733b38 (patch)
tree04149b75555afc2d39791e321970f76b1bcaca38 /tap-ansi_astat.c
parentca970e37571a3a39d6fc257c899ffacc25222269 (diff)
downloadwireshark-fcf7b3789cec5595880d27e0109387e2d8733b38.tar.gz
add an userdata argument to register_stat_cmd_arg() and its callback to use the callback for multiple registrations.
svn path=/trunk/; revision=17252
Diffstat (limited to 'tap-ansi_astat.c')
-rw-r--r--tap-ansi_astat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tap-ansi_astat.c b/tap-ansi_astat.c
index 8b285eaa70..0a045e7bc4 100644
--- a/tap-ansi_astat.c
+++ b/tap-ansi_astat.c
@@ -135,7 +135,7 @@ ansi_a_stat_draw(
static void
-ansi_a_stat_init(const char *optarg _U_)
+ansi_a_stat_init(const char *optarg _U_, void* userdata _U_)
{
ansi_a_stat_t *stat_p;
GString *err_p;
@@ -163,5 +163,5 @@ ansi_a_stat_init(const char *optarg _U_)
void
register_tap_listener_ansi_astat(void)
{
- register_stat_cmd_arg("ansi_a,", ansi_a_stat_init);
+ register_stat_cmd_arg("ansi_a,", ansi_a_stat_init,NULL);
}