From c00febd8ac574552efe05264674ee16bb18f9afa Mon Sep 17 00:00:00 2001 From: chme Date: Fri, 15 Dec 2017 16:52:06 +0100 Subject: [PATCH] [library] remove initialization of globals to zero --- src/library.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/library.c b/src/library.c index cafbc654..c62b6e82 100644 --- a/src/library.c +++ b/src/library.c @@ -92,8 +92,8 @@ static struct event *updateev; // Counts the number of changes made to the database between to DATABASE // event notifications -static unsigned int deferred_update_notifications = 0; -static short deferred_update_events = 0; +static unsigned int deferred_update_notifications; +static short deferred_update_events; static bool handle_deferred_update_notifications(void)