diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-06-19 18:52:13 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-06-19 18:52:13 +0000 |
commit | d4913cadda43af44f8f638d222bf129c1ce7a536 (patch) | |
tree | 2d90ec423c73f054df98b5db66230a354f29a24d /lib/libevent/kqueue.c | |
parent | e635a532674acce9dddb8d0e4fe7a1d15f95accc (diff) |
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, |