sound: Fix function prefix syscommon to libsys 92/296992/1 accepted/tizen/7.0/unified/20230810.164217
authorYunhee Seo <yuni.seo@samsung.com>
Tue, 8 Aug 2023 11:05:24 +0000 (20:05 +0900)
committerYunhee Seo <yuni.seo@samsung.com>
Tue, 8 Aug 2023 11:05:24 +0000 (20:05 +0900)
Function starts with syscommon_ is from the tizen_8.0.
Fix the name of a function that is being misused.

Change-Id: I94095c869c5e4a0fd219ba22b86cc2032a9707d0
Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
src/sound.c

index ee577a2..450b727 100644 (file)
@@ -156,7 +156,7 @@ static bool feedback_is_multi_theme_support(const char *path)
        if (!path)
                return false;
 
-       ret = syscommon_config_parse_by_section(path, feedback_parse_sound_multi_theme_section, NULL);
+       ret = libsys_config_parse_by_section(path, feedback_parse_sound_multi_theme_section, NULL);
        if (ret < 0)
                return false;
 
@@ -206,7 +206,7 @@ static int feedback_multi_theme_load_config(const char *path)
        if (!path)
                return -EINVAL;
 
-       ret = syscommon_config_parse_by_section(path, feedback_parse_multi_theme_conf_path_section, NULL);
+       ret = libsys_config_parse_by_section(path, feedback_parse_multi_theme_conf_path_section, NULL);
 
        return ret;
 }