From e75b1a1612758fe5d98fc19be64093369da723bf Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Tue, 28 Jun 2016 11:54:20 +0000 Subject: [PATCH] Fix: Corrected number of arguments for ICECAST_LOG_INFO() This fixes the number of arguments for ICECAST_LOG_INFO(). Why doesn't GCC warn about this? --- src/auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth.c b/src/auth.c index e4df3dc7..1ca46778 100644 --- a/src/auth.c +++ b/src/auth.c @@ -393,7 +393,7 @@ static void auth_add_client(auth_t *auth, client_t *client, void (*on_no_match)( auth_user->on_no_match = on_no_match; auth_user->on_result = on_result; auth_user->userdata = userdata; - ICECAST_LOG_INFO("adding client %p for authentication on %p", client); + ICECAST_LOG_INFO("adding client %p for authentication on %p", client, auth); queue_auth_client(auth_user); }