From 8dbedf338e31c21f03080dc7e7dde02c671a22e4 Mon Sep 17 00:00:00 2001 From: SukhyungKang Date: Wed, 20 Mar 2024 15:15:25 +0900 Subject: [PATCH] Add return type of constructor/destructor function Change-Id: Ib56ca091a1f7bf3d5496a5cf541f826d19e38a5e Signed-off-by: SukhyungKang --- notification/src/notification_internal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notification/src/notification_internal.c b/notification/src/notification_internal.c index 8bf878a..804f967 100644 --- a/notification/src/notification_internal.c +++ b/notification/src/notification_internal.c @@ -74,12 +74,12 @@ static GList *__noti_event_cb_list = NULL; static GRecMutex __rec_mutex; static gint __init_mutex = 0; -NOTIFICATION_CTOR __notification_init(void) +NOTIFICATION_CTOR static void __notification_init(void) { g_rec_mutex_init(&__rec_mutex); } -NOTIFICATION_DTOR __notification_fini(void) +NOTIFICATION_DTOR static void __notification_fini(void) { g_rec_mutex_clear(&__rec_mutex); } -- 2.7.4