typo fix for return value

This commit is contained in:
2019-02-23 23:52:20 +08:00
parent d092b99a43
commit 8295541f7d

View File

@@ -118,7 +118,7 @@ INT8 ir_file_open(const UINT8 category, const UINT8 sub_category, const char* fi
#else
INT8 ir_file_open(const UINT8 category, const UINT8 sub_category, const char* file_name)
{
return IR_DECODE_SUCCESS;
return IR_DECODE_SUCCEEDED;
}
#endif