aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/graph_analysis.c
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2013-03-24 23:03:21 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2013-03-24 23:03:21 +0000
commitcfc0087d71ea12feaf11e7b3b05325985e801660 (patch)
tree1e12cbf47a567956629be9bae844ed3e26bae417 /ui/gtk/graph_analysis.c
parent88c0e8e873ec945e4bf2b6c5831c16540691af52 (diff)
add missing cast
svn path=/trunk/; revision=48540
Diffstat (limited to 'ui/gtk/graph_analysis.c')
-rw-r--r--ui/gtk/graph_analysis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/graph_analysis.c b/ui/gtk/graph_analysis.c
index b1ba6aad96..4339390c77 100644
--- a/ui/gtk/graph_analysis.c
+++ b/ui/gtk/graph_analysis.c
@@ -1511,7 +1511,7 @@ comments_area_scrolled(GtkAdjustment *adjustment _U_, gpointer data)
/****************************************************************************/
static gboolean draw_time(GtkWidget *widget, cairo_t *cr, gpointer data)
{
- graph_analysis_data_t *user_data = data;
+ graph_analysis_data_t *user_data = (graph_analysis_data_t *)data;
GtkAllocation allocation;
gtk_widget_get_allocation (widget, &allocation);