Added the missing ENTER/RETURN macros to Action_End().

This commit is contained in:
obarthel
2018-10-31 12:21:05 +01:00
parent 03c7cb3e50
commit f71fb6bbdb
+3
View File
@@ -7805,6 +7805,8 @@ Action_End(
struct FileNode * found;
int error = OK;
ENTER();
if(file_system_disabled)
{
error = ERROR_NO_DISK;
@@ -7853,6 +7855,7 @@ Action_End(
(*error_ptr) = error;
RETURN(result);
return(result);
}