mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-01-03 14:56:34 -05:00
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?
This commit is contained in:
parent
f5dd306f71
commit
e75b1a1612
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user