From 8295541f7dc86c9a89095fd9841e19eaf7d4a618 Mon Sep 17 00:00:00 2001 From: strawmanbobi Date: Sat, 23 Feb 2019 23:52:20 +0800 Subject: [PATCH] typo fix for return value --- src/ir_decoder/src/ir_decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ir_decoder/src/ir_decode.c b/src/ir_decoder/src/ir_decode.c index a60d202..54ee833 100644 --- a/src/ir_decoder/src/ir_decode.c +++ b/src/ir_decoder/src/ir_decode.c @@ -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