From: Michael Jerris Date: Thu, 21 Dec 2006 21:26:48 +0000 (+0000) Subject: fix X-Git-Tag: v1.0-beta1~1472 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25131f4124a54aabc057d74b86a3ffe78820c800;p=thirdparty%2Ffreeswitch.git fix git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3788 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 18fce0535e..e9e598f87c 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -2510,7 +2510,7 @@ static switch_status_t conf_api_sub_list(conference_obj_t *conference, switch_st stream->write_function(stream, "Conference %s (%u member%s)\n", conference->name, conference->count, - conference->count == 1 ? "" : ""); + conference->count == 1 ? "" : "s"); if (pretty) { conference_list_pretty(conference, stream); } else {