diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-02 04:41:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-02 04:41:31 +0000 |
commit | 84517669000209cc5df46465c715076a3d5ad9ef (patch) | |
tree | 093b83035645f9c621f2c2d23ba07b77e6aab992 /lib/libevent | |
parent | e2bb7a7a0bec939a5a8cde0e91895c2189abdc7f (diff) |
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, |