From: Arran Cudbard-Bell Date: Thu, 5 Dec 2019 11:56:28 +0000 (+0700) Subject: Notify function does not return a void * X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ae9bd3e307a958cea2aef8dba64eac1ee565779;p=thirdparty%2Ffreeradius-server.git Notify function does not return a void * --- diff --git a/src/lib/server/trunk.h b/src/lib/server/trunk.h index 5e42d59f8ac..f37531c3617 100644 --- a/src/lib/server/trunk.h +++ b/src/lib/server/trunk.h @@ -156,9 +156,9 @@ typedef fr_connection_t *(*fr_trunk_connection_alloc_t)(fr_trunk_connection_t *t * @param[in] notify_on When to signal the trunk connection. * @param[in] uctx User data to pass to the notify callback. */ -typedef void *(*fr_trunk_connection_notify_t)(fr_trunk_connection_t *tconn, fr_connection_t *conn, - fr_event_list_t *el, - fr_trunk_connection_event_t notify_on, void *uctx); +typedef void (*fr_trunk_connection_notify_t)(fr_trunk_connection_t *tconn, fr_connection_t *conn, + fr_event_list_t *el, + fr_trunk_connection_event_t notify_on, void *uctx); /** Multiplex one or more requests into a single connection *