X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fsystem_setting_platform.c;h=87d7710f758fd3002b5c2fb19017709584aec5f8;hb=72c737c67321309951aad581d473114a61b6c188;hp=19551b82a8d449dc5fa586772b75378527c52964;hpb=9a65fbe4cee3ee5ca9f145911e96f600f9a42b35;p=platform%2Fcore%2Fapi%2Fsystem-settings.git diff --git a/src/system_setting_platform.c b/src/system_setting_platform.c index 19551b8..87d7710 100644 --- a/src/system_setting_platform.c +++ b/src/system_setting_platform.c @@ -339,9 +339,9 @@ int dl_is_available_font(char *str) return false; } - check_available_font = dlsym(handle, "_is_available_font"); + check_available_font = dlsym(handle, "__is_available_font"); if ((error = dlerror()) != NULL) { - SETTING_TRACE("ERROR!! canNOT find font_config_set function at libsystem-settings-util.so.0.1.0"); + SETTING_TRACE("ERROR!! canNOT find __is_available_font function at libsystem-settings-util.so.0.1.0"); if (handle) dlclose(handle); return false; @@ -366,7 +366,7 @@ void dl_font_size_set() set_font_size = dlsym(handle, "__font_size_set"); if ((error = dlerror()) != NULL) { - SETTING_TRACE("ERROR!! canNOT find font_config_set function at libsystem-settings-util.so.0.1.0"); + SETTING_TRACE("ERROR!! canNOT find __font_size_set function at libsystem-settings-util.so.0.1.0"); if (handle) dlclose(handle); return; @@ -391,7 +391,7 @@ void dl_font_config_set_notification() set_font_nodification = dlsym(handle, "font_config_set_notification"); if ((error = dlerror()) != NULL) { - SETTING_TRACE("ERROR!! canNOT find font_config_set function at libsystem-settings-util.so.0.1.0"); + SETTING_TRACE("ERROR!! canNOT find font_config_set_notification function at libsystem-settings-util.so.0.1.0"); if (handle) dlclose(handle); return;