1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

go: fix cppcheck warnings

This commit is contained in:
Steffen Vogel 2022-03-14 17:31:11 -04:00
parent ea5b0b4993
commit d72b19c2ec

View file

@ -52,7 +52,8 @@ void _go_logger_log(_go_logger l, int level, char *msg)
GoNode::GoNode(uintptr_t n) :
Node(),
node(n)
node(n),
formatter(nullptr)
{ }
GoNode::~GoNode()
@ -143,7 +144,7 @@ int GoNode::stop() {
if (ret)
return ret;
return ret;
return 0;
}
int GoNode::pause()