From: Junkyeong Kim Date: Tue, 29 Mar 2016 05:42:29 +0000 (+0900) Subject: fix efl_util_screenshot_deinitialize error return value X-Git-Tag: accepted/tizen/common/20160405.133149~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2661e174a44a68375f4bc95cad1c832e651660e8;p=platform%2Fcore%2Fapi%2Fefl-util.git fix efl_util_screenshot_deinitialize error return value Change-Id: I257b7af85f9dbc9186d295df32e5d323d5e1d069 Signed-off-by: Junkyeong Kim --- diff --git a/src/efl_util.c b/src/efl_util.c index 1b1ffb1..743c691 100644 --- a/src/efl_util.c +++ b/src/efl_util.c @@ -1824,7 +1824,7 @@ efl_util_screenshot_deinitialize(efl_util_screenshot_h screenshot) #endif #if WAYLAND if (!screenshot) - return EFL_UTIL_ERROR_NONE; + return EFL_UTIL_ERROR_INVALID_PARAMETER; free(screenshot); g_screenshot = NULL;