summaryrefslogtreecommitdiff
path: root/ui/gtk/sctp_graph_dlg.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2013-03-28 06:36:44 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2013-03-28 06:36:44 +0000
commit42c71a3261581caafa1be74105e9f910559d3a52 (patch)
treef006d9504c5e6008a48af8d8cc88356de237b1e0 /ui/gtk/sctp_graph_dlg.c
parentaee73d6d9e101927150b1ca3a16d404b50196366 (diff)
downloadwireshark-42c71a3261581caafa1be74105e9f910559d3a52.tar.gz
Follow up on bug 8416.
Remove C++ incompatibilities in GTK+ 3 code. svn path=/trunk/; revision=48606
Diffstat (limited to 'ui/gtk/sctp_graph_dlg.c')
-rw-r--r--ui/gtk/sctp_graph_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/sctp_graph_dlg.c b/ui/gtk/sctp_graph_dlg.c
index cd624092cc..e61aae5968 100644
--- a/ui/gtk/sctp_graph_dlg.c
+++ b/ui/gtk/sctp_graph_dlg.c
@@ -1185,7 +1185,7 @@ configure_event(GtkWidget *widget, GdkEventConfigure *event _U_, gpointer user_d
static gboolean
draw_event(GtkWidget *widget, cairo_t *cr, gpointer user_data)
{
- sctp_graph_t *ios = user_data;
+ sctp_graph_t *ios = (sctp_graph_t *)user_data;
GtkAllocation allocation;
gtk_widget_get_allocation (widget, &allocation);