From: Michael S Collins Date: Thu, 26 May 2011 00:11:07 +0000 (-0700) Subject: Newline not needed here X-Git-Tag: v1.2-rc1~108^2~11^2~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3aff2bdcbc1d927354e15b67e7d820466cecaf06;p=thirdparty%2Ffreeswitch.git Newline not needed here --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index a8930ee35d..bd8559f95a 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -3595,7 +3595,7 @@ static void conference_list_count_only(conference_obj_t *conference, switch_stre switch_assert(conference != NULL); switch_assert(stream != NULL); - stream->write_function(stream, "%d\n", conference->count); + stream->write_function(stream, "%d", conference->count); } static switch_status_t conf_api_sub_mute(conference_member_t *member, switch_stream_handle_t *stream, void *data)