]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Notify function does not return a void *
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 5 Dec 2019 11:56:28 +0000 (18:56 +0700)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 5 Dec 2019 11:56:28 +0000 (18:56 +0700)
src/lib/server/trunk.h

index 5e42d59f8acd4c2485e8e1307c0734585efd6d06..f37531c3617e5f2b966b903dce1db546eaf13012 100644 (file)
@@ -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
  *