diff options
author | 2003-06-19 18:52:12 +0000 | |
---|---|---|
committer | 2003-06-19 18:52:12 +0000 | |
commit | 759b88175bab0a8f923d16d29bb57cf250fbea79 (patch) | |
tree | 860ba9f004a6b2426d3b774d84f0181ae753aa72 /lib/libevent/kqueue.c | |
parent | a few grammer fixens from jmc@ (diff) | |
download | wireguard-openbsd-759b88175bab0a8f923d16d29bb57cf250fbea79.tar.xz wireguard-openbsd-759b88175bab0a8f923d16d29bb57cf250fbea79.zip |
constify constant structures; niels ok
Diffstat (limited to 'lib/libevent/kqueue.c')
-rw-r--r-- | lib/libevent/kqueue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libevent/kqueue.c b/lib/libevent/kqueue.c index c46df72426d..573e98f907d 100644 --- a/lib/libevent/kqueue.c +++ b/lib/libevent/kqueue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kqueue.c,v 1.8 2003/06/03 20:26:44 deraadt Exp $ */ +/* $OpenBSD: kqueue.c,v 1.9 2003/06/19 18:52:12 mickey Exp $ */ /* * Copyright 2000-2002 Niels Provos <provos@citi.umich.edu> @@ -73,7 +73,7 @@ int kq_del (void *, struct event *); int kq_recalc (void *, int); int kq_dispatch (void *, struct timeval *); -struct eventop kqops = { +const struct eventop kqops = { "kqueue", kq_init, kq_add, |