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:
parent
ea5b0b4993
commit
d72b19c2ec
1 changed files with 3 additions and 2 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue