mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fixed smaller bugs
git-svn-id: https://zerberus.eonerc.rwth-aachen.de:8443/svn/s2ss/trunk@218 8ec27952-4edc-4aab-86aa-e87bb2611832
This commit is contained in:
parent
359e401282
commit
f3ac1b565e
2 changed files with 3 additions and 3 deletions
|
@ -99,7 +99,7 @@ int config_parse_path(config_setting_t *cfg,
|
|||
|
||||
path->in = node_lookup_name(in, *nodes);
|
||||
if (!path->in)
|
||||
cerror(cfg, "Invalid input node '%s'");
|
||||
cerror(cfg, "Invalid input node '%s'", in);
|
||||
|
||||
path->out = node_lookup_name(out, *nodes);
|
||||
if (!path->out)
|
||||
|
|
|
@ -112,6 +112,8 @@ static void * path_run(void *arg)
|
|||
continue;
|
||||
}
|
||||
|
||||
p->sequence = m->sequence;
|
||||
|
||||
/* At fixed rate mode, messages are send by another thread */
|
||||
// if (p->rate)
|
||||
// p->last = m;
|
||||
|
@ -119,8 +121,6 @@ static void * path_run(void *arg)
|
|||
msg_send(m, p->out);
|
||||
p->sent++;
|
||||
// }
|
||||
|
||||
p->sequence = m->sequence;
|
||||
}
|
||||
|
||||
free(m);
|
||||
|
|
Loading…
Add table
Reference in a new issue