diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 350087e3e7..30f8d0d73e 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -2111,7 +2111,7 @@ static switch_status_t conf_function(char *buf, switch_core_session_t *session, switch_hash_this(hi, NULL, NULL, &val); conference = (conference_obj_t *) val; - stream->write_function(stream, "Conference %s (%u members)\n", conference->name, conference->count); + stream->write_function(stream, "Conference %s (%u member%s)\n", conference->name, conference->count, conference->count == 1 ? "" : "s"); conference_list(conference, stream, d); stream->write_function(stream, "\n"); }