Added missing newline in debug output.
This commit is contained in:
parent
ca97b489de
commit
267a2c0ebd
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ olock_dump(resource *r)
|
|||
struct object_lock *l = (struct object_lock *) r;
|
||||
static char *olock_states[] = { "free", "locked", "waiting", "event" };
|
||||
|
||||
debug("(%d:%s:%I:%d) [%s]", l->type, (l->iface ? l->iface->name : "?"), l->addr, l->port, olock_states[l->state]);
|
||||
debug("(%d:%s:%I:%d) [%s]\n", l->type, (l->iface ? l->iface->name : "?"), l->addr, l->port, olock_states[l->state]);
|
||||
if (!EMPTY_LIST(l->waiters))
|
||||
debug(" [wanted]\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue