Fix notification ringtone impl
authorJoohyun Kim <joohyune.kim@samsung.com>
Tue, 18 Jun 2013 05:48:39 +0000 (14:48 +0900)
committerJoohyun Kim <joohyune.kim@samsung.com>
Tue, 18 Jun 2013 05:48:39 +0000 (14:48 +0900)
Change-Id: I047b0f65c6301f0414b072eb13425526fb821626
Signed-off-by: Joohyun Kim <joohyune.kim@samsung.com>
src/setting/FSys_SettingSoundProvider.cpp

index 8f4069b..a815461 100644 (file)
@@ -405,7 +405,7 @@ _SettingSoundProvider::GetValue(const String& key, String& value)
                r = E_SUCCESS;
                char* pNotification = null;
                pNotification = vconf_get_str(VCONFKEY_SETAPPL_NOTI_MSG_RINGTONE_PATH_STR);
-               SysTryReturnResult(NID_SYS, pNotification == null, E_SYSTEM, "It is failed to get ringtone");
+               SysTryReturnResult(NID_SYS, pNotification != null, E_SYSTEM, "It is failed to get ringtone");
                value.Clear();
                value.Append(pNotification);
                free(pNotification);