diff options
author | jorton <jorton@13f79535-47bb-0310-9956-ffa450edef68> | 2007-02-21 13:37:05 +0000 |
---|---|---|
committer | jorton <jorton@13f79535-47bb-0310-9956-ffa450edef68> | 2007-02-21 13:37:05 +0000 |
commit | 71b41b1174f35eec5ade579043bb5a2973e77c32 (patch) | |
tree | 042689b2ec6d02ad4fb449d45b117b0f5d01e394 | |
parent | 6fcd3971803fbb718f4e9962de06c1729933ce9d (diff) | |
download | libapr-71b41b1174f35eec5ade579043bb5a2973e77c32.tar.gz |
* include/apr_poll.h: Style and spelling tweak.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@510007 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | include/apr_poll.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_poll.h b/include/apr_poll.h index 9f901bbf6..4e299ee57 100644 --- a/include/apr_poll.h +++ b/include/apr_poll.h @@ -226,12 +226,12 @@ APR_DECLARE(apr_status_t) apr_pollcb_remove(apr_pollcb_t *pollcb, apr_pollfd_t *descriptor); /** Function prototype for pollcb handlers - * @param baton Opaque baotn passed into apr_pollcb_poll + * @param baton Opaque baton passed into apr_pollcb_poll * @param descriptor Contains the notification for an active descriptor, * the rtnevents member contains what events were triggered * for this descriptor. */ -typedef apr_status_t(*apr_pollcb_cb_t)(void* baton, apr_pollfd_t *descriptor); +typedef apr_status_t (*apr_pollcb_cb_t)(void *baton, apr_pollfd_t *descriptor); /** * Block for activity on the descriptor(s) in a pollcb |