From c6fcc79e6a8bad918b7e080c06f851899d5da361 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 4 Dec 2012 16:45:35 -0500 Subject: [PATCH] display: Kill a warning at shutdown A small semicolon was causing us to always remove the focus timeout ID. --- src/core/display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/display.c b/src/core/display.c index a515a182b..bd35748d1 100644 --- a/src/core/display.c +++ b/src/core/display.c @@ -1050,7 +1050,7 @@ meta_display_close (MetaDisplay *display, meta_display_remove_autoraise_callback (display); - if (display->focus_timeout_id); + if (display->focus_timeout_id) g_source_remove (display->focus_timeout_id); display->focus_timeout_id = 0;