Fix type Refs/for/tizen
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:02:57 +0000 (10:02 +0900)
The return value type of iniparser_getstring() is changed to "const char *".

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

index 3b7014fefa017516c0bd4500968b3e104138a7a9..6a42ce39a7626a527ee10225fed349926f309a40 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;