diff options
author | 2004-07-20 23:40:27 +0000 | |
---|---|---|
committer | 2004-07-20 23:40:27 +0000 | |
commit | 1a327475313301a1589f102a10b942adb15baeab (patch) | |
tree | 5307695e3276440cbc3c4f4754cb22b59563cf44 | |
parent | Forgot to put this chunk in. (diff) | |
download | wireguard-openbsd-1a327475313301a1589f102a10b942adb15baeab.tar.xz wireguard-openbsd-1a327475313301a1589f102a10b942adb15baeab.zip |
KASSERT instead of assert. Gives smaller RAMDISKS.
-rw-r--r-- | sys/net/route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/route.c b/sys/net/route.c index b9ab6a12550..73aab50e443 100644 --- a/sys/net/route.c +++ b/sys/net/route.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route.c,v 1.44 2004/06/22 07:35:20 cedric Exp $ */ +/* $OpenBSD: route.c,v 1.45 2004/07/20 23:40:27 art Exp $ */ /* $NetBSD: route.c,v 1.14 1996/02/13 22:00:46 christos Exp $ */ /* @@ -996,7 +996,7 @@ rt_timer_init() { static struct timeout rt_timer_timeout; - assert(rt_init_done == 0); + KASSERT(rt_init_done == 0); #if 0 pool_init(&rttimer_pool, sizeof(struct rttimer), 0, 0, 0, "rttmrpl", |