From cccab67025622346c9643bd1fe8e0205593def7a Mon Sep 17 00:00:00 2001 From: InHong Han Date: Fri, 20 Mar 2020 13:11:25 +0900 Subject: [PATCH] Fix wrong error value Change-Id: If4d58982b791dc064cc3b05d7e35d84caf9c661f --- include/sticker_error.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sticker_error.h b/include/sticker_error.h index fea1302..2239809 100644 --- a/include/sticker_error.h +++ b/include/sticker_error.h @@ -47,7 +47,7 @@ typedef enum { STICKER_ERROR_OPERATION_FAILED = TIZEN_ERROR_STICKER | 0x0001, /**< Operation failed */ STICKER_ERROR_FILE_EXISTS = TIZEN_ERROR_FILE_EXISTS, /**< File exists */ STICKER_ERROR_NO_DATA = TIZEN_ERROR_NO_DATA, /**< No data available */ - STICKER_ERROR_NO_SUCH_FILE = TIZEN_ERROR_FILE_EXISTS, /**< No such file */ + STICKER_ERROR_NO_SUCH_FILE = TIZEN_ERROR_NO_SUCH_FILE, /**< No such file */ } sticker_error_e; /** -- 2.7.4