small corrections
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
Robin Müller 2021-07-29 18:32:02 +02:00
parent df971d4ec5
commit 940d4965bc
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
2 changed files with 2 additions and 1 deletions

View File

@ -451,7 +451,7 @@ void CoreController::initPrint() {
TcpTmTcBridge::DEFAULT_SERVER_PORT << std::endl; TcpTmTcBridge::DEFAULT_SERVER_PORT << std::endl;
#endif #endif
if(watchdogFifoFd != 0) { if(watchdogFifoFd > 0) {
sif::info << "Opened watchdog FIFO successfully.." << std::endl; sif::info << "Opened watchdog FIFO successfully.." << std::endl;
} }
#endif #endif

View File

@ -14,6 +14,7 @@ int main() {
} }
catch(const std::runtime_error& e) { catch(const std::runtime_error& e) {
std::cerr << "eive-watchdog: Run time exception " << e.what() << std::endl; std::cerr << "eive-watchdog: Run time exception " << e.what() << std::endl;
return -1;
} }
return 0; return 0;
} }