summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bgpd/timer.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2010-10-24 17:20:08 +0000
committerderaadt <deraadt@openbsd.org>2010-10-24 17:20:08 +0000
commitadbdb3f993df8ba7ff1fb7f92cbe97860b84b9bb (patch)
treec71471bd556fb3fdc79c8b766f348283f277c25a /usr.sbin/bgpd/timer.c
parentthe subtype should be printed unsigned; ok claudio (diff)
downloadwireguard-openbsd-adbdb3f993df8ba7ff1fb7f92cbe97860b84b9bb.tar.xz
wireguard-openbsd-adbdb3f993df8ba7ff1fb7f92cbe97860b84b9bb.zip
spacing and irrelevant glitches which disrupt lint
Diffstat (limited to 'usr.sbin/bgpd/timer.c')
-rw-r--r--usr.sbin/bgpd/timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/timer.c b/usr.sbin/bgpd/timer.c
index 41ccede8d54..0aaba0886a2 100644
--- a/usr.sbin/bgpd/timer.c
+++ b/usr.sbin/bgpd/timer.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: timer.c,v 1.13 2009/01/21 20:32:53 henning Exp $ */
+/* $OpenBSD: timer.c,v 1.14 2010/10/24 17:20:08 deraadt Exp $ */
/*
* Copyright (c) 2003-2007 Henning Brauer <henning@openbsd.org>
@@ -43,7 +43,7 @@ timer_get(struct peer *p, enum Timer timer)
TAILQ_FOREACH(pt, &p->timers, entry)
if (pt->type == timer)
- break;
+ break;
return (pt);
}