Get rid of an unused structure member.
authorGuy Harris <guy@alum.mit.edu>
Sat, 7 Mar 2015 04:33:41 +0000 (20:33 -0800)
committerGuy Harris <guy@alum.mit.edu>
Sat, 7 Mar 2015 04:41:09 +0000 (04:41 +0000)
Change-Id: I2941bb7e6dc0fce3e1256af6e5e19d2997de5801
Reviewed-on: https://code.wireshark.org/review/7573
Reviewed-by: Guy Harris <guy@alum.mit.edu>
57 files changed:
epan/conversation_table.c
epan/stat_tap_ui.h
epan/wslua/wslua_util.c
ui/cli/tap-afpstat.c
ui/cli/tap-ansi_astat.c
ui/cli/tap-bootpstat.c
ui/cli/tap-camelcounter.c
ui/cli/tap-camelsrt.c
ui/cli/tap-comparestat.c
ui/cli/tap-dcerpcstat.c
ui/cli/tap-diameter-avp.c
ui/cli/tap-expert.c
ui/cli/tap-follow.c
ui/cli/tap-funnel.c
ui/cli/tap-gsm_astat.c
ui/cli/tap-h225counter.c
ui/cli/tap-h225rassrt.c
ui/cli/tap-hosts.c
ui/cli/tap-httpstat.c
ui/cli/tap-icmpstat.c
ui/cli/tap-icmpv6stat.c
ui/cli/tap-iostat.c
ui/cli/tap-macltestat.c
ui/cli/tap-megacostat.c
ui/cli/tap-mgcpstat.c
ui/cli/tap-protocolinfo.c
ui/cli/tap-protohierstat.c
ui/cli/tap-radiusstat.c
ui/cli/tap-rlcltestat.c
ui/cli/tap-rpcprogs.c
ui/cli/tap-rpcstat.c
ui/cli/tap-rtp.c
ui/cli/tap-rtspstat.c
ui/cli/tap-scsistat.c
ui/cli/tap-sctpchunkstat.c
ui/cli/tap-sipstat.c
ui/cli/tap-smbsids.c
ui/cli/tap-smbstat.c
ui/cli/tap-stats_tree.c
ui/cli/tap-sv.c
ui/cli/tap-wspstat.c
ui/gtk/ansi_map_stat.c
ui/gtk/compare_stat.c
ui/gtk/dcerpc_stat.c
ui/gtk/expert_comp_dlg.c
ui/gtk/flow_graph.c
ui/gtk/gsm_a_stat.c
ui/gtk/gsm_map_stat.c
ui/gtk/iax2_analysis.c
ui/gtk/io_stat.c
ui/gtk/mtp3_stat.c
ui/gtk/rpc_progs.c
ui/gtk/rpc_stat.c
ui/gtk/rtp_analysis.c
ui/gtk/tap_param_dlg.c
ui/gtk/voip_calls_dlg.c
ui/qt/io_graph_dialog.cpp

index 5ae0e81138df23dc7b630261fbecb47fbcc241a2..b02d6e558b808f098058ae638e1cd3e40119fec1 100644 (file)
@@ -169,7 +169,6 @@ set_conv_gui_data(gpointer data, gpointer user_data)
     ui_info.title = NULL;   /* construct this from the protocol info? */
     ui_info.cli_string = g_string_free(conv_cmd_str, FALSE);
     ui_info.tap_init_cb = dissector_conversation_init;
-    ui_info.index = -1;
     ui_info.nparams = 0;
     ui_info.params = NULL;
     register_stat_tap_ui(&ui_info, table);
@@ -194,7 +193,6 @@ set_host_gui_data(gpointer data, gpointer user_data)
     ui_info.title = NULL;   /* construct this from the protocol info? */
     ui_info.cli_string = g_string_free(host_cmd_str, FALSE);
     ui_info.tap_init_cb = dissector_hostlist_init;
-    ui_info.index = -1;
     ui_info.nparams = 0;
     ui_info.params = NULL;
     register_stat_tap_ui(&ui_info, table);
index 359cf4bf9a55305ecfdcb4535f078a38708e7530..0452b97049f8188ebd1eb564c3ad451d17b5dc36 100644 (file)
@@ -60,7 +60,6 @@ typedef struct _stat_tap_ui {
     const char            *title;      /* title of statistic */
     const char            *cli_string; /* initial part of the "-z" argument for statistic */
     void (* tap_init_cb)(const char *, void*); /* callback to init function of the tap */
-    gint                   index;      /* initiate this value always with "-1" */
     size_t                 nparams;    /* number of parameters */
     tap_param             *params;     /* pointer to table of parameter info */
 } stat_tap_ui;
index 2b53d9f91edf9aff402ff7bd3a420445105e5b32..cef3daf870d46dbe868fe9fb9c3c9d9f6902f7e2 100644 (file)
@@ -275,7 +275,6 @@ WSLUA_FUNCTION wslua_register_stat_cmd_arg(lua_State* L) {
     ui_info.title = NULL;
     ui_info.cli_string = arg;
     ui_info.tap_init_cb = statcmd_init;
-    ui_info.index = -1;
     ui_info.nparams = 0;
     ui_info.params = NULL;
     register_stat_tap_ui(&ui_info, sc);
index f6bfb82aa9c727cf051603935728063db6b5343d..67536e421311f03b044c11cae158dc632cc65628 100644 (file)
@@ -160,7 +160,6 @@ static stat_tap_ui afpstat_ui = {
        NULL,
        "afp,srt",
        afpstat_init,
-       -1,
        0,
        NULL
 };
index c5a68a5bf9658b04ea282d316d8b3e090afa47fb..4e9553403c41b09282bc546fea19c97dd8cd9917 100644 (file)
@@ -158,7 +158,6 @@ static stat_tap_ui ansi_a_stat_ui = {
     NULL,
     "ansi_a",
     ansi_a_stat_init,
-    -1,
     0,
     NULL
 };
index 88e2a49bde3bbcd66a995e86b8be0b967f0a6fa1..00ead042c92f3be7588f13e09e1b2deea6c196b5 100644 (file)
@@ -179,7 +179,6 @@ static stat_tap_ui dhcpstat_ui = {
        NULL,
        "bootp,stat",
        dhcpstat_init,
-       -1,
        0,
        NULL
 };
index e0bca3263c542a772930ba339b87a7ab7a59051f..6013a1e7729e5e6f67d052e184d21567e10b258d 100644 (file)
@@ -124,7 +124,6 @@ static stat_tap_ui camelcounter_ui = {
   NULL,
   "camel,counter",
   camelcounter_init,
-  -1,
   0,
   NULL
 };
index 73aaff207300e722a156cb6c1bab4e23cfd15f87..6277d357d881b087926702ce5b86e551328d81a6 100644 (file)
@@ -254,7 +254,6 @@ static stat_tap_ui camelsrt_ui = {
   NULL,
   "camel,srt",
   camelsrt_init,
-  -1,
   0,
   NULL
 };
index d98fee2103c513c38e9e933875114c41dde83c58..cb5e4377efc4ab3e6634a1f293bc5ef1f870d4fd 100644 (file)
@@ -579,7 +579,6 @@ static stat_tap_ui comparestat_ui = {
        NULL,
        "compare",
        comparestat_init,
-       -1,
        0,
        NULL
 };
index ce0233e4919a7d2a4518efc9ee48d1d032074951..0c1319d2b47c29a826e8972f233d019cb344d782 100644 (file)
@@ -293,7 +293,6 @@ static stat_tap_ui dcerpcstat_ui = {
        NULL,
        "dcerpc,srt",
        dcerpcstat_init,
-       -1,
        0,
        NULL
 };
index c93b1744d74c103a78d3af23c633a3730b07cf21..f611fd1afe03d3d28054703e0f7f68018788cec3 100644 (file)
@@ -272,7 +272,6 @@ static stat_tap_ui diameteravp_ui = {
        NULL,
        "diameter,avp",
        diameteravp_init,
-       -1,
        0,
        NULL
 };
index 4acdcd16924ddcf8f87eef22726dde9c367d4b66..b16c3a9b4afa6dba9e10ba983b7f87c512cd0f69 100644 (file)
@@ -269,7 +269,6 @@ static stat_tap_ui expert_stat_ui = {
     NULL,
     "expert",
     expert_stat_init,
-    -1,
     0,
     NULL
 };
index d9f4f0d61004c77cf3d6b14dfb82eb6096a22f83..a658f4170a0a7a34c9da9c22509c0d0ebb190ce9 100644 (file)
@@ -1006,7 +1006,6 @@ static stat_tap_ui followTcp_ui = {
   NULL,
   STR_FOLLOW_TCP,
   followTcp,
-  -1,
   0,
   NULL
 };
@@ -1016,7 +1015,6 @@ static stat_tap_ui followUdp_ui = {
   NULL,
   STR_FOLLOW_UDP,
   followUdp,
-  -1,
   0,
   NULL
 };
@@ -1026,7 +1024,6 @@ static stat_tap_ui followSsl_ui = {
   NULL,
   STR_FOLLOW_SSL,
   followSsl,
-  -1,
   0,
   NULL
 };
index 1d0ed303bef9e163bd04833706610f1a7641418f..0c79d89b97d3d8e506b81f9d43d1668d760d5f0c 100644 (file)
@@ -180,7 +180,6 @@ static void register_menu_cb(const char *name,
     ui_info.title = NULL;
     ui_info.cli_string = name;
     ui_info.tap_init_cb = init_funnel_cmd;
-    ui_info.index = -1;
     ui_info.nparams = 0;
     ui_info.params = NULL;
     register_stat_tap_ui(&ui_info, mcb);
index 8db139e2d5d1ecd265c85b88675f85cf85c0f934..33905269ba431bf9a5501cdd39addfb7434c378e 100644 (file)
@@ -344,7 +344,6 @@ static stat_tap_ui gsm_a_stat_ui = {
     NULL,
     "gsm_a",
     gsm_a_stat_init,
-    -1,
     0,
     NULL
 };
index e75fe56f2e77fe948d74fa584e4ca1c2cc4aadfc..1cca92f424e3e17c8b6e9184a058cae57b9b70b0 100644 (file)
@@ -403,7 +403,6 @@ static stat_tap_ui h225counter_ui = {
        NULL,
        "h225,counter",
        h225counter_init,
-       -1,
        0,
        NULL
 };
index 9a1a3ef65760572ff519210a3c46a9eca773d969..d8d1effe91ec9dda6c47fdef88e53b9259df4236 100644 (file)
@@ -242,7 +242,6 @@ static stat_tap_ui h225rassrt_ui = {
        NULL,
        "h225,srt",
        h225rassrt_init,
-       -1,
        0,
        NULL
 };
index a4c2360f7c82ac75796f6752cda0d6943be7586a..e1772f2aed77207fffb16f4e0d5fba9dd0a89b86 100644 (file)
@@ -139,7 +139,6 @@ static stat_tap_ui hosts_ui = {
        NULL,
        TAP_NAME,
        hosts_init,
-       -1,
        0,
        NULL
 };
index 573c7075725e1f7aaf051c45d0ea92e2f1d20fdd..f986f6cd21f51e07d5f5e1be0b59f0c63e2a9010 100644 (file)
@@ -325,7 +325,6 @@ static stat_tap_ui httpstat_ui = {
        NULL,
        "http,stat",
        httpstat_init,
-       -1,
        0,
        NULL
 };
index 793685e13f79249d416a13ec71095e8f057f35a7..ccc67f0d6036527a8cdf363a87bb0fe3318f1873 100644 (file)
@@ -314,7 +314,6 @@ static stat_tap_ui icmpstat_ui = {
     NULL,
     "icmp,srt",
     icmpstat_init,
-    -1,
     0,
     NULL
 };
index bca9d46b768dedca98e72c10adcd733290643c89..50de5e0143ddf8c2a304894ba55e28b9c386c85f 100644 (file)
@@ -315,7 +315,6 @@ static stat_tap_ui icmpv6stat_ui = {
     NULL,
     "icmpv6,srt",
     icmpv6stat_init,
-    -1,
     0,
     NULL
 };
index 21919739918083545d7c70d67603714c05f8e7e9..aeb0f1293ce75465811db3b5ce154ecc4d6bac3e 100644 (file)
@@ -1524,7 +1524,6 @@ static stat_tap_ui iostat_ui = {
     NULL,
     "io,stat",
     iostat_init,
-    -1,
     0,
     NULL
 };
index 9e929f6c57aa1d324be7e23a616dc2ee2f4be63b..c4f85b43345d265df14de352aee03754b3077da5 100644 (file)
@@ -545,7 +545,6 @@ static stat_tap_ui mac_lte_stat_ui = {
     NULL,
     "mac-lte,stat",
     mac_lte_stat_init,
-    -1,
     0,
     NULL
 };
index 1a5174847b4dee392b3ce7c1d36956d2970039cc..feae053ffe1b7dc711bcaa475f4d4e0a3d37ea63 100644 (file)
@@ -136,7 +136,6 @@ static stat_tap_ui megacostat_ui = {
        NULL,
        "megaco,rtd",
        megacostat_init,
-       -1,
        0,
        NULL
 };
index 508d41d71eba385a28b1a5453a3018d3c8c209b6..ad9455c05efe7a1369125fcc0b2315818db77875 100644 (file)
@@ -221,7 +221,6 @@ static stat_tap_ui mgcpstat_ui = {
        NULL,
        "mgcp,rtd",
        mgcpstat_init,
-       -1,
        0,
        NULL
 };
index b7560b966587667e3402614cdd49834b8de40a95..8227c1b948e7165102fe7b063908078f210935ce 100644 (file)
@@ -134,7 +134,6 @@ static stat_tap_ui protocolinfo_ui = {
        NULL,
        "proto,colinfo",
        protocolinfo_init,
-       -1,
        0,
        NULL
 };
index 292e83f8a8f36c8f873bf183b5506b80e30caae6..6fe4096a699bf75429ded968b875aa5445e30ee1 100644 (file)
@@ -209,7 +209,6 @@ static stat_tap_ui protohierstat_ui = {
        NULL,
        "io,phs",
        protohierstat_init,
-       -1,
        0,
        NULL
 };
index 82bc89e606c64c859a6b9ff6b356ae6e1e6099c9..2514ef43bd6f553b85bf31b19a1099ea4f21ad33 100644 (file)
@@ -237,7 +237,6 @@ static stat_tap_ui radiusstat_ui = {
        NULL,
        "radius,rtd",
        radiusstat_init,
-       -1,
        0,
        NULL
 };
index de0b3169708c36c31d703510f69f1fc910f95129..9e635ff81b1ccec6c0c48a77d15f1f9f191ac45b 100644 (file)
@@ -406,7 +406,6 @@ static stat_tap_ui rlc_lte_stat_ui = {
     NULL,
     "rlc-lte,stat",
     rlc_lte_stat_init,
-    -1,
     0,
     NULL
 };
index 6d7c1ceaa744e85b76f02e7b9d2890da797f3b2d..67a6ca607de4a392b87507e1da1eb4bad33b7e56 100644 (file)
@@ -230,7 +230,6 @@ static stat_tap_ui rpcprogs_ui = {
        NULL,
        "rpc,programs",
        rpcprogs_init,
-       -1,
        0,
        NULL
 };
index 9a74c7bda6450eda3aa7d6bcbb09c2d14daeadc5..006b39cbbf7b4f2e8323375d8d037cc15b9d6e58 100644 (file)
@@ -347,7 +347,6 @@ static stat_tap_ui rpcstat_ui = {
        NULL,
        "rpc,srt",
        rpcstat_init,
-       -1,
        0,
        NULL
 };
index 878d4368c9456c5b70a1d8c237d7ffd187085fd0..0b9635f26b89ac1f17c162a5c888d5e407d4259b 100644 (file)
@@ -158,7 +158,6 @@ static stat_tap_ui rtp_streams_stat_ui = {
     NULL,
     "rtp,streams",
     rtp_streams_stat_init,
-    -1,
     0,
     NULL
 };
index 90a198f3775b117e6033549e160d8e2c13b5bf6a..81f74e503c92d211ab55b0ce74a3431fb50d3ddd 100644 (file)
@@ -277,7 +277,6 @@ static stat_tap_ui rtspstat_ui = {
        NULL,
        "rtsp,stat",
        rtspstat_init,
-       -1,
        0,
        NULL
 };
index e13596bf80b649d5d73c0534b498830ef2aa66ce..ce0a58f4b3427d63c2e320a1ef16fe89642af9e6 100644 (file)
@@ -258,7 +258,6 @@ static stat_tap_ui scsistat_ui = {
        NULL,
        "scsi,srt",
        scsistat_init,
-       -1,
        0,
        NULL
 };
index 7e9d8a65e1ecfdec85e263bdf9db3e3bc7674624..776a88a27801a270cd760790c97efcb837dbd906 100644 (file)
@@ -250,7 +250,6 @@ static stat_tap_ui sctpstat_ui = {
        NULL,
        "sctp,stat",
        sctpstat_init,
-       -1,
        0,
        NULL
 };
index d12d6203650a1b65b90f3db89cffbf41c4c618dd..3a1936ad4a24fe1630d7f7a711d91693641b3b47 100644 (file)
@@ -437,7 +437,6 @@ static stat_tap_ui sipstat_ui = {
        NULL,
        "sip,stat",
        sipstat_init,
-       -1,
        0,
        NULL
 };
index 754e0bcd4f8a626b02fb8e73d6dc6e9150d3b634..ab325e71a78687690d3c4e129a86e7f9866fc68e 100644 (file)
@@ -90,7 +90,6 @@ static stat_tap_ui smbsids_ui = {
        NULL,
        "smb,sids",
        smbsids_init,
-       -1,
        0,
        NULL
 };
index a8cd9667a4035e38c73239350623b68cb34b16ff..161ea9fbac9aaea8420f2f20d9913c23a765e85f 100644 (file)
@@ -259,7 +259,6 @@ static stat_tap_ui smbstat_ui = {
        NULL,
        "smb,srt",
        smbstat_init,
-       -1,
        0,
        NULL
 };
index efb4bcb0920814c195f6625c38b0dba549aa5931..72ae99a3d586a2d2b0a343c07d9d40e74e12c91c 100644 (file)
@@ -120,7 +120,6 @@ register_stats_tree_tap (gpointer k _U_, gpointer v, gpointer p _U_)
        ui_info.title = NULL;
        ui_info.cli_string = cfg->pr->init_string;
        ui_info.tap_init_cb = init_stats_tree;
-       ui_info.index = -1;
        ui_info.nparams = 0;
        ui_info.params = NULL;
        register_stat_tap_ui(&ui_info, NULL);
index 970055650844836e26eed7a575e1f468a8143a13..1b41e0c1a8c0873aaba5678e9d07cae831bd4278 100644 (file)
@@ -78,7 +78,6 @@ static stat_tap_ui svstat_ui = {
        NULL,
        "sv",
        svstat_init,
-       -1,
        0,
        NULL
 };
index eb06a67d887541e829e225f82715cf4bdafd7ea2..77bd455e9050506e0d5d7940271ff74f090dd44a 100644 (file)
@@ -281,7 +281,6 @@ static stat_tap_ui wspstat_ui = {
        NULL,
        "wsp,stat",
        wspstat_init,
-       -1,
        0,
        NULL
 };
index 81e6948b89776550644d407ee5343a9e44937499..944a2a77fb2bde810854eabfcf0583fbe0a414e3 100644 (file)
@@ -351,7 +351,6 @@ static stat_tap_ui ansi_map_ui = {
     NULL,
     "ansi_map",
     ansi_map_stat_gtk_init,
-    -1,
     0,
     NULL
 };
index 3d50ba41e0dc86a3f6d0e41ebbddd7c1484ccaff..cf3c9202ada4ae143f2dbeae2de4f807b6dfaf31 100644 (file)
@@ -1054,7 +1054,6 @@ static stat_tap_ui compare_stat_ui = {
        NULL,
        "compare",
        gtk_comparestat_init,
-       -1,
        0,
        NULL
 };
index 6e11a1dc46c6a66d8f5e6ab23ae574bfd8820223..b65279503f1e8103eeef589e881a5feb68488960 100644 (file)
@@ -715,7 +715,6 @@ static stat_tap_ui dcerpcstat_ui = {
        NULL,
        "dcerpc,srt",
        gtk_dcerpcstat_init,
-       -1,
        0,
        NULL
 };
index d4b6d89ac9e435ea2a73358d874f5416039adf4d..4406b83892bf9d54891577423827768a83f0c71e 100644 (file)
@@ -1007,7 +1007,6 @@ static stat_tap_ui expert_comp_ui = {
     NULL,
     "expert_comp",
     expert_comp_init,
-    -1,
     0,
     NULL
 };
index 838c96e43c71d8d87f4722be04d98d4d3dd5e68b..ba06f5de39f549dedf824980d25e9917aaab49c9 100644 (file)
@@ -388,7 +388,6 @@ static stat_tap_ui flow_graph_ui = {
        NULL,
        "flow_graph",
        flow_graph_init_tap,
-       -1,
        0,
        NULL
 };
index 5830c98706cf6f0a4489aa5c2d31a8b614a94588..75f0b5daa2cf9b89d142ebcbce00357cae7dfe55 100644 (file)
@@ -628,7 +628,6 @@ static stat_tap_ui gsm_a_stat_bssmap_ui = {
     NULL,
     "gsm_a,bssmap",
     gsm_a_stat_gtk_bssmap_init,
-    -1,
     0,
     NULL
 };
@@ -638,7 +637,6 @@ static stat_tap_ui gsm_a_stat_dtap_mm_ui = {
     NULL,
     "gsm_a,dtap_mm",
     gsm_a_stat_gtk_dtap_mm_init,
-    -1,
     0,
     NULL
 };
@@ -648,7 +646,6 @@ static stat_tap_ui gsm_a_stat_dtap_rr_ui = {
     NULL,
     "gsm_a,dtap_rr",
     gsm_a_stat_gtk_dtap_rr_init,
-    -1,
     0,
     NULL
 };
@@ -658,7 +655,6 @@ static stat_tap_ui gsm_a_stat_dtap_cc_ui = {
     NULL,
     "gsm_a,dtap_cc",
     gsm_a_stat_gtk_dtap_cc_init,
-    -1,
     0,
     NULL
 };
@@ -668,7 +664,6 @@ static stat_tap_ui gsm_a_stat_dtap_gmm_ui = {
     NULL,
     "gsm_a,dtap_gmm",
     gsm_a_stat_gtk_dtap_gmm_init,
-    -1,
     0,
     NULL
 };
@@ -678,7 +673,6 @@ static stat_tap_ui gsm_a_stat_dtap_sms_ui = {
     NULL,
     "gsm_a,dtap_sms",
     gsm_a_stat_gtk_dtap_sms_init,
-    -1,
     0,
     NULL
 };
@@ -688,7 +682,6 @@ static stat_tap_ui gsm_a_stat_dtap_sm_ui = {
     NULL,
     "gsm_a,dtap_sm",
     gsm_a_stat_gtk_dtap_sm_init,
-    -1,
     0,
     NULL
 };
@@ -698,7 +691,6 @@ static stat_tap_ui gsm_a_stat_dtap_ss_ui = {
     NULL,
     "gsm_a,dtap_ss",
     gsm_a_stat_gtk_dtap_ss_init,
-    -1,
     0,
     NULL
 };
@@ -708,7 +700,6 @@ static stat_tap_ui gsm_a_stat_dtap_tp_ui = {
     NULL,
     "gsm_a,dtap_tp",
     gsm_a_stat_gtk_dtap_tp_init,
-    -1,
     0,
     NULL
 };
@@ -718,7 +709,6 @@ static stat_tap_ui gsm_a_stat_sacch_rr_ui = {
     NULL,
     "gsm_a,sacch",
     gsm_a_stat_gtk_sacch_rr_init,
-    -1,
     0,
     NULL
 };
index 67b2244ffa44b983788e048bd2c46e50520b601b..af5102e0339151240dda2493a39974f884b47598 100644 (file)
@@ -451,7 +451,6 @@ static stat_tap_ui gsm_map_stat_ui = {
     NULL,
     "gsm_map",
     gsm_map_stat_gtk_init,
-    -1,
     0,
     NULL
 };
index e78b67fafab7810935ccaa6bf915674ec738113f..e167e570ee7165a490f04965e6069e9fc4efaf4c 100644 (file)
@@ -3830,7 +3830,6 @@ static stat_tap_ui iax2_analysis_ui = {
        NULL,
        "IAX2", /* XXX - should be "iax2" */
        iax2_analysis_init,
-       -1,
        0,
        NULL
 };
index 7a9506c96809603b623578bdb40a7895b3f2670e..b7f82d9ea8cfa5e24531261779f4fbe134eb12ae 100644 (file)
@@ -2170,7 +2170,6 @@ static stat_tap_ui iostat_ui = {
     NULL,
     "io,stat",
     iostat_init,
-    -1,
     0,
     NULL
 };
index 63457e4fa40e019b31fd53987a2a24f97eb505af..628390e5a5f267cbdbfb46d7335e9d86008c55e9 100644 (file)
@@ -419,7 +419,6 @@ static stat_tap_ui mtp3_stat_ui = {
     NULL,
     "mtp3,msus",
     mtp3_stat_gtk_init,
-    -1,
     0,
     NULL
 };
index 47b11bcfad95673940e8bb4bd5ea9830f3871ff0..d60a2cbec7082a4e0cc376ce574bb77973ac1007 100644 (file)
@@ -426,7 +426,6 @@ static stat_tap_ui rpcprogs_ui = {
        NULL,
        "rpc,programs",
        gtk_rpcprogs_init,
-       -1,
        0,
        NULL
 };
index 6659390df7b15eb2f2add41163169e1ca1b56240..42987d0617472fc3db0880da2bfdc110548ab1da 100644 (file)
@@ -524,7 +524,6 @@ static stat_tap_ui rpcstat_ui = {
        NULL,
        "rpc,srt",
        gtk_rpcstat_init,
-       -1,
        0,
        NULL
 };
index 6945d50c6f21818cc045e48591070b49ec0494d1..2e319b440ceeb9a9d6a514f59a210f75c0ee948b 100644 (file)
@@ -4062,7 +4062,6 @@ static stat_tap_ui rtp_analysis_ui = {
        NULL,
        "rtp",
        rtp_analysis_init,
-       -1,
        0,
        NULL
 };
index f9174d4fee3b1dfc747a7bc6e5a81dd6c97d1da2..f5f57e03e561a0761a59fa90d1940c34c3013cfc 100644 (file)
@@ -76,7 +76,6 @@ register_param_stat(tap_param_dlg *info, const char *name,
     ui_info.title = full_name;
     ui_info.cli_string = info->init_string;
     ui_info.tap_init_cb = info->tap_init_cb;
-    ui_info.index = -1;
     ui_info.nparams = info->nparams;
     ui_info.params = info->params;
     register_stat_tap_ui(&ui_info, NULL);
index 1acd9bd38c49fb642ca3761e0f17a4232ac0d76f..52f123b6e9db42437524e175f3e753aabc4f18d2 100644 (file)
@@ -946,7 +946,6 @@ static stat_tap_ui voip_calls_ui = {
        NULL,
        "voip,calls",
        voip_calls_dlg_init_taps,
-       -1,
        0,
        NULL
 };
index 9aa5abbe5612e2bd9a667eb451c2900b9b077c22..06096ec840521ae2087893efdabab145e59aaf1e 100644 (file)
@@ -2179,7 +2179,6 @@ static stat_tap_ui io_stat_ui = {
     NULL,
     "io,stat",
     io_graph_init,
-    -1,
     0,
     NULL
 };