From c0a67d2cce75c913718fd428091ce95da05f2da4 Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Tue, 18 Jan 2022 11:27:40 +0100 Subject: [PATCH] contacts-provider: Remove static from action name string There was no reason to have it static in the first place. --- src/calls-contacts-provider.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calls-contacts-provider.c b/src/calls-contacts-provider.c index c461abb..0d5f95a 100644 --- a/src/calls-contacts-provider.c +++ b/src/calls-contacts-provider.c @@ -195,7 +195,7 @@ folks_prepare_cb (GObject *obj, static void on_contacts_actions_updated (CallsContactsProvider *self) { - static const char *contact_action_name = "new-contact-data"; + const char *contact_action_name = "new-contact-data"; g_assert (CALLS_IS_CONTACTS_PROVIDER (self));