Fix build error due to iniparse upgrade (to 4.1) 60/220960/1 accepted/tizen_6.0_unified accepted/tizen_6.0_unified_hotfix accepted/tizen_6.5_unified tizen_6.0 tizen_6.0_hotfix tizen_6.5 accepted/tizen/6.0/unified/20201030.122238 accepted/tizen/6.0/unified/hotfix/20201103.004602 accepted/tizen/6.0/unified/hotfix/20201103.051742 accepted/tizen/6.5/unified/20211028.100651 accepted/tizen/unified/20191227.142838 submit/tizen/20191226.054040 submit/tizen_6.0/20201029.205102 submit/tizen_6.0_hotfix/20201102.192502 submit/tizen_6.0_hotfix/20201103.114802 submit/tizen_6.5/20211028.161801 tizen_6.0.m2_release tizen_6.5.m2_release
authorGilbok Lee <gilbok.lee@samsung.com>
Thu, 26 Dec 2019 05:35:52 +0000 (14:35 +0900)
committerGilbok Lee <gilbok.lee@samsung.com>
Thu, 26 Dec 2019 05:35:52 +0000 (14:35 +0900)
[Version] 0.1.23
[Issue Type] Fix build error

Change-Id: I5b78534f5f05894464fb8df4a5a98ee70f957c8f

packaging/capi-mediamuxer.spec
src/mediamuxer_ini.c

index 3c7b9fc..302a3b9 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-mediamuxer
 Summary:    A Media Muxer library in Tizen Native API
-Version:    0.1.22
+Version:    0.1.23
 Release:    1
 Group:      Multimedia/API
 License:    Apache-2.0
index bfc6aa0..b80c8e9 100644 (file)
@@ -30,7 +30,7 @@
 /* macro */
 #define MEDIAMUXER_INI_GET_STRING(x_dict, x_item, x_ini, x_default) \
        do { \
-               gchar* str = iniparser_getstring(x_dict, x_ini, x_default); \
+               const char *str = iniparser_getstring(x_dict, x_ini, x_default); \
                \
                if (str &&  \
                        (strlen(str) > 0) && \
@@ -43,7 +43,7 @@
 
 #define MEDIAMUXER_INI_GET_COLOR(x_dict, x_item, x_ini, x_default) \
        do { \
-               gchar* str = iniparser_getstring(x_dict, x_ini, x_default); \
+               const char *str = iniparser_getstring(x_dict, x_ini, x_default); \
                \
                if (str &&  \
                        (strlen(str) > 0) && \