aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/gtk/tcp_graph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/tcp_graph.c b/ui/gtk/tcp_graph.c
index f447d3a9fc..c6684d83bf 100644
--- a/ui/gtk/tcp_graph.c
+++ b/ui/gtk/tcp_graph.c
@@ -625,7 +625,7 @@ static void unset_busy_cursor(GdkWindow *w, gboolean cross)
gdk_window_set_cursor(w, cursor);
gdk_flush();
#if GTK_CHECK_VERSION(3,0,0)
- g_object_unref(cursor)
+ g_object_unref(cursor);
#else
gdk_cursor_unref(cursor);
#endif
@@ -1531,7 +1531,7 @@ static void callback_cross_on_off (GtkWidget *toggle, gpointer data)
gdk_window_set_cursor(gtk_widget_get_window(g->drawing_area), cursor);
gdk_flush();
#if GTK_CHECK_VERSION(3,0,0)
- g_object_unref(cursor)
+ g_object_unref(cursor);
#else
gdk_cursor_unref(cursor);
#endif