diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 8c919634a7..e42d31c768 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -1981,7 +1981,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c if (conf->transframe[index]) { if (conf->transframe[index]->frametype != AST_FRAME_NULL) { if (ast_write(chan, conf->transframe[index])) - ast_log(LOG_WARNING, "Unable to write frame to channel: %s\n", strerror(errno)); + ast_log(LOG_WARNING, "Unable to write frame to channel %s\n", chan->name); } } else { ast_mutex_unlock(&conf->listenlock); @@ -1993,7 +1993,7 @@ bailoutandtrynormal: if (user->listen.actual) ast_frame_adjust_volume(&fr, user->listen.actual); if (ast_write(chan, &fr) < 0) { - ast_log(LOG_WARNING, "Unable to write frame to channel: %s\n", strerror(errno)); + ast_log(LOG_WARNING, "Unable to write frame to channel %s\n", chan->name); } } } else