From: SukhyungKang Date: Wed, 20 Mar 2024 06:15:25 +0000 (+0900) Subject: Add return type of constructor/destructor function X-Git-Tag: accepted/tizen/unified/20240321.142411~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8dbedf338e31c21f03080dc7e7dde02c671a22e4;p=platform%2Fcore%2Fapi%2Fnotification.git Add return type of constructor/destructor function Change-Id: Ib56ca091a1f7bf3d5496a5cf541f826d19e38a5e Signed-off-by: SukhyungKang --- 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); }