diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 5731d7ba1a..54dc38262b 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -17001,7 +17001,7 @@ static int reload_config(enum channelreloadreason reason) notify_types = ast_config_load(notify_config); /* Done, tell the manager */ - manager_event(EVENT_FLAG_SYSTEM, "ChannelReload", "Channel: SIP\r\nReloadReason: %s\r\nRegistry_Count: %d\r\nPeer_Count: %d\r\nUser_Count: %d\r\n\r\n", channelreloadreason2txt(reason), registry_count, peer_count, user_count); + manager_event(EVENT_FLAG_SYSTEM, "ChannelReload", "Channel: SIP\r\nReloadReason: %s\r\nRegistry_Count: %d\r\nPeer_Count: %d\r\nUser_Count: %d\r\n", channelreloadreason2txt(reason), registry_count, peer_count, user_count); return 0; }