work/wireshark/svn/trunk/ui/gtk/voip_calls.c:599:9: error: variable ‘voip_calls_graph_list’ set but not used [-Werror=unused-but-set-variable]


svn path=/trunk/; revision=41548
This commit is contained in:
Jörg Mayer 2012-03-14 17:26:49 +00:00
parent e0397b3811
commit 19ea690e10
1 changed files with 11 additions and 11 deletions

View File

@ -596,7 +596,7 @@ static void RTP_packet_draw(void *prs _U_)
voip_rtp_tapinfo_t *rtp_tapinfo = &the_tapinfo_rtp_struct;
GList *rtp_streams_list;
voip_rtp_stream_info_t *rtp_listinfo;
GList *voip_calls_graph_list;
/* GList *voip_calls_graph_list; */
graph_analysis_item_t *gai;
graph_analysis_item_t *new_gai;
guint16 conv_num;
@ -609,7 +609,7 @@ static void RTP_packet_draw(void *prs _U_)
rtp_listinfo = rtp_streams_list->data;
/* using the setup frame number of the RTP stream, we get the call number that it belongs to*/
voip_calls_graph_list = g_list_first(the_tapinfo_struct.graph_analysis->list);
/* voip_calls_graph_list = g_list_first(the_tapinfo_struct.graph_analysis->list); */
gai = g_hash_table_lookup(the_tapinfo_struct.graph_analysis->ht, &rtp_listinfo->setup_frame_number);
if(gai != NULL){