Fix type 78/222978/1
authorHwankyu Jhun <h.jhun@samsung.com>
Wed, 22 Jan 2020 01:02:57 +0000 (10:02 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Wed, 22 Jan 2020 01:03:30 +0000 (10:03 +0900)
The return value type of iniparser_getstring() is changed to "const char *".

Change-Id: I41094037cc800dcccf10a9bf35d49872f75594f2
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
notification/src/notification_viewer.c

index 3b7014f..6a42ce3 100644 (file)
@@ -32,8 +32,8 @@ static char *_default_viewer;
 /* LCOV_EXCL_START */
 EXPORT_API int notification_init_default_viewer()
 {
-       char *viewer = NULL;
-       dictionary *dict = NULL;
+       const char *viewer;
+       dictionary *dict;
 
        if (_default_viewer != NULL)
                return 0;