]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Added missing newline in debug output.
authorMartin Mares <mj@ucw.cz>
Mon, 20 Mar 2000 20:52:18 +0000 (20:52 +0000)
committerMartin Mares <mj@ucw.cz>
Mon, 20 Mar 2000 20:52:18 +0000 (20:52 +0000)
nest/locks.c

index a2134fb67dee607751cb86393f4f57c77e6407c2..713ef97a39bc5ac924e1028816edbe244102fb54 100644 (file)
@@ -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");
 }