diff options
author | 2005-12-02 04:41:30 +0000 | |
---|---|---|
committer | 2005-12-02 04:41:30 +0000 | |
commit | ae8df7afbfdd0d895eceeb7fa9d34e0e3db83bc9 (patch) | |
tree | 209c1bf24ce9220d3d9531502fe4501900681b4e /lib/libevent | |
parent | sync usage to man page (diff) | |
download | wireguard-openbsd-ae8df7afbfdd0d895eceeb7fa9d34e0e3db83bc9.tar.xz wireguard-openbsd-ae8df7afbfdd0d895eceeb7fa9d34e0e3db83bc9.zip |
pollops should be const
Diffstat (limited to 'lib/libevent')
-rw-r--r-- | lib/libevent/poll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libevent/poll.c b/lib/libevent/poll.c index 9da4d59cb50..fbc5aca4eff 100644 --- a/lib/libevent/poll.c +++ b/lib/libevent/poll.c @@ -1,4 +1,4 @@ -/* $OpenBSD: poll.c,v 1.10 2005/07/02 07:15:13 grunk Exp $ */ +/* $OpenBSD: poll.c,v 1.11 2005/12/02 04:41:30 deraadt Exp $ */ /* * Copyright 2000-2003 Niels Provos <provos@citi.umich.edu> @@ -75,7 +75,7 @@ int poll_del (void *, struct event *); int poll_recalc (struct event_base *, void *, int); int poll_dispatch (struct event_base *, void *, struct timeval *); -struct eventop pollops = { +const struct eventop pollops = { "poll", poll_init, poll_add, |