From 031aee539cf13bb43bdeacab4daf0f653b1b7061 Mon Sep 17 00:00:00 2001 From: thodkatz <thodkatz@gmail.com> Date: Fri, 3 May 2019 14:59:06 +0300 Subject: [PATCH] Fix ci --- inc/Services/FunctionManagementService.hpp | 2 +- src/Services/FunctionManagementService.cpp | 1 + src/Services/TimeManagementService.cpp | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/inc/Services/FunctionManagementService.hpp b/inc/Services/FunctionManagementService.hpp index 266e6546..512ce3e3 100644 --- a/inc/Services/FunctionManagementService.hpp +++ b/inc/Services/FunctionManagementService.hpp @@ -98,7 +98,7 @@ public: * @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 */ - void execute(Message& param); + void execute(Message& message); }; #endif // ECSS_SERVICES_FUNCTIONMANAGEMENTSERVICE_HPP diff --git a/src/Services/FunctionManagementService.cpp b/src/Services/FunctionManagementService.cpp index 96f7a2a8..88f1a338 100644 --- a/src/Services/FunctionManagementService.cpp +++ b/src/Services/FunctionManagementService.cpp @@ -53,5 +53,6 @@ void FunctionManagementService::execute(Message& message) { break; default: ErrorHandler::reportInternalError(ErrorHandler::OtherMessageType); + break; } } diff --git a/src/Services/TimeManagementService.cpp b/src/Services/TimeManagementService.cpp index 832cc31f..0cf015f7 100644 --- a/src/Services/TimeManagementService.cpp +++ b/src/Services/TimeManagementService.cpp @@ -32,5 +32,6 @@ void TimeManagementService::execute(Message& message) { break; default: ErrorHandler::reportInternalError(ErrorHandler::OtherMessageType); + break; } } -- GitLab