Commit 84cb7304 authored by 李俭双's avatar 李俭双

🐞 fix:45375 This function has been declared with a non-void 'return' type but...

🐞 fix:45375 This function has been declared with a non-void 'return' type but ends with an implicit 'return ;' statement.
parent dc90e17c
...@@ -82,6 +82,7 @@ Linelib_uint8_t Get_LINE_IN_FAULT_ELECTROSPRAY(void) ...@@ -82,6 +82,7 @@ Linelib_uint8_t Get_LINE_IN_FAULT_ELECTROSPRAY(void)
{ {
ret = 0; ret = 0;
} }
return ret;
} }
Linelib_uint8_t Get_LINE_IN_Fault_ABS(void) Linelib_uint8_t Get_LINE_IN_Fault_ABS(void)
...@@ -95,6 +96,7 @@ Linelib_uint8_t Get_LINE_IN_Fault_ABS(void) ...@@ -95,6 +96,7 @@ Linelib_uint8_t Get_LINE_IN_Fault_ABS(void)
{ {
ret = 0; ret = 0;
} }
return ret;
} }
Linelib_uint8_t Get_LINE_IN_Oil_Pressure(void) Linelib_uint8_t Get_LINE_IN_Oil_Pressure(void)
...@@ -108,6 +110,7 @@ Linelib_uint8_t Get_LINE_IN_Oil_Pressure(void) ...@@ -108,6 +110,7 @@ Linelib_uint8_t Get_LINE_IN_Oil_Pressure(void)
{ {
ret = 0; ret = 0;
} }
return ret;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment