From 6f196df753737f823398097802279cd2567b713e Mon Sep 17 00:00:00 2001 From: Yunhee Seo Date: Tue, 8 Aug 2023 20:05:24 +0900 Subject: [PATCH] sound: Fix function prefix syscommon to libsys 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 --- src/sound.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sound.c b/src/sound.c index ee577a2..450b727 100644 --- a/src/sound.c +++ b/src/sound.c @@ -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; } -- 2.7.4