Blame SOURCES/0001-idle-monitor-Use-G_SOURCE_CONTINUE-instead-of-TRUE.patch

f73620
From 0ac0bc55cf69579834b28d99729cefd1157624c3 Mon Sep 17 00:00:00 2001
f73620
From: =?UTF-8?q?Jonas=20=C3=85dahl?= <jadahl@gmail.com>
f73620
Date: Tue, 16 Apr 2019 18:06:54 +0200
f73620
Subject: [PATCH 1/2] idle-monitor: Use G_SOURCE_CONTINUE instead of TRUE
f73620
f73620
Returning TRUE is confusing, as it doesn't carry any relevant meaning.
f73620
Use G_SOURCE_CONTINUE to make it clearer that the source is here to
f73620
stay.
f73620
---
f73620
 src/backends/meta-idle-monitor.c | 2 +-
f73620
 1 file changed, 1 insertion(+), 1 deletion(-)
f73620
f73620
diff --git a/src/backends/meta-idle-monitor.c b/src/backends/meta-idle-monitor.c
f73620
index 46cf8cd76..2b634f59a 100644
f73620
--- a/src/backends/meta-idle-monitor.c
f73620
+++ b/src/backends/meta-idle-monitor.c
f73620
@@ -315,7 +315,7 @@ idle_monitor_dispatch_timeout (GSource     *source,
f73620
   _meta_idle_monitor_watch_fire (watch);
f73620
   g_source_set_ready_time (watch->timeout_source, -1);
f73620
 
f73620
-  return TRUE;
f73620
+  return G_SOURCE_CONTINUE;
f73620
 }
f73620
 
f73620
 static GSourceFuncs idle_monitor_source_funcs = {
f73620
-- 
f73620
2.20.1
f73620