Skip to content

Commit

Permalink
Notify function does not return a void *
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Dec 5, 2019
1 parent b6ea05d commit 5ae9bd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/server/trunk.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand Down

0 comments on commit 5ae9bd3

Please sign in to comment.