Add return type of constructor/destructor function 40/308240/1
authorSukhyungKang <shine.kang@samsung.com>
Wed, 20 Mar 2024 06:15:25 +0000 (15:15 +0900)
committerSukhyungKang <shine.kang@samsung.com>
Wed, 20 Mar 2024 06:15:25 +0000 (15:15 +0900)
Change-Id: Ib56ca091a1f7bf3d5496a5cf541f826d19e38a5e
Signed-off-by: SukhyungKang <shine.kang@samsung.com>
notification/src/notification_internal.c

index 8bf878a..804f967 100644 (file)
@@ -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);
 }