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

fix compiler errors

This commit is contained in:
Steffen Vogel 2019-01-21 10:34:36 +01:00
parent e3ec18df73
commit ffb27baee0
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ using namespace villas::node::api;
Api::Api(SuperNode *sn) :
state(STATE_INITIALIZED),
super_node(sn),
server(this),
server(this)
{
logger = logging.get("api");
}

View file

@ -65,7 +65,7 @@ SuperNode::SuperNode() :
name = hname;
logger = logging.get("super_node")
logger = logging.get("super_node");
}
int SuperNode::parseUri(const std::string &u)