Skip to content

Commit

Permalink
Address possible weird interation with threads/pthread API
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Dec 16, 2019
1 parent cb2ab2a commit 862ad4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/server/log.c
Expand Up @@ -246,9 +246,9 @@ inline bool log_rdebug_enabled(fr_log_lvl_t lvl, REQUEST *request)
/** Cleanup the memory pool used by vlog_request
*
*/
static void _fr_vlog_request_pool_free(UNUSED void *arg)
static void _fr_vlog_request_pool_free(void *arg)
{
TALLOC_FREE(fr_vlog_request_pool);
talloc_free(arg);
}

/** Send a log message to its destination, possibly including fields from the request
Expand Down

0 comments on commit 862ad4c

Please sign in to comment.