From 33f89b9f1c7729075637327e2ff29dbb05f55a0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giedrius=20Statkevi=C4=8Dius?= Date: Sun, 9 Aug 2015 15:57:36 +0300 Subject: daemon: drop redundant initializer in notify_daemon_error_quark static variables are already initialized to 0/NULL by default --- src/daemon/daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/daemon.c b/src/daemon/daemon.c index dd05c3f..9185189 100644 --- a/src/daemon/daemon.c +++ b/src/daemon/daemon.c @@ -1382,7 +1382,7 @@ static void sync_notification_position(NotifyDaemon* daemon, GtkWindow* nw, Wind GQuark notify_daemon_error_quark(void) { - static GQuark q = 0; + static GQuark q; if (q == 0) { -- cgit v1.2.1