Skip to content
Snippets Groups Projects
Commit 031aee53 authored by thodkatz's avatar thodkatz
Browse files

Fix ci

parent 921e0780
No related branches found
No related tags found
No related merge requests found
...@@ -98,7 +98,7 @@ public: ...@@ -98,7 +98,7 @@ public:
* @note This function is called from the main execute() that is defined in the file MessageParser.hpp * @note This function is called from the main execute() that is defined in the file MessageParser.hpp
* @param param Contains the necessary parameters to call the suitable subservice * @param param Contains the necessary parameters to call the suitable subservice
*/ */
void execute(Message& param); void execute(Message& message);
}; };
#endif // ECSS_SERVICES_FUNCTIONMANAGEMENTSERVICE_HPP #endif // ECSS_SERVICES_FUNCTIONMANAGEMENTSERVICE_HPP
...@@ -53,5 +53,6 @@ void FunctionManagementService::execute(Message& message) { ...@@ -53,5 +53,6 @@ void FunctionManagementService::execute(Message& message) {
break; break;
default: default:
ErrorHandler::reportInternalError(ErrorHandler::OtherMessageType); ErrorHandler::reportInternalError(ErrorHandler::OtherMessageType);
break;
} }
} }
...@@ -32,5 +32,6 @@ void TimeManagementService::execute(Message& message) { ...@@ -32,5 +32,6 @@ void TimeManagementService::execute(Message& message) {
break; break;
default: default:
ErrorHandler::reportInternalError(ErrorHandler::OtherMessageType); ErrorHandler::reportInternalError(ErrorHandler::OtherMessageType);
break;
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment