aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/tcp_graph.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-04-23 15:07:30 +0000
committerBill Meier <wmeier@newsguy.com>2012-04-23 15:07:30 +0000
commitef1ede5d771d35b99ac44099d4cb0a58308f749f (patch)
tree2091113e53afee5da6b477213c742813da20f28e /ui/gtk/tcp_graph.c
parentea68381088d5267a22638d20383f9ae693520644 (diff)
Fix a compile error (missing semi-colon) when building for gtk3
svn path=/trunk/; revision=42209
Diffstat (limited to 'ui/gtk/tcp_graph.c')
-rw-r--r--ui/gtk/tcp_graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/tcp_graph.c b/ui/gtk/tcp_graph.c
index 74f61eedba..54722b0044 100644
--- a/ui/gtk/tcp_graph.c
+++ b/ui/gtk/tcp_graph.c
@@ -594,7 +594,7 @@ static void set_busy_cursor(GdkWindow *w)
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