Fix compile errors.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@371950 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Richard Mudgett
2012-08-29 22:38:54 +00:00
parent cf08fe11f8
commit 52e48b8926

View File

@@ -1148,11 +1148,11 @@ static void conf_play(struct ast_channel *chan, struct ast_conference *conf, enu
int res = -1; int res = -1;
ast_test_suite_event_notify("CONFPLAY", "Channel: %s\r\n" ast_test_suite_event_notify("CONFPLAY", "Channel: %s\r\n"
"Conference: %s\r\n" "Conference: %s\r\n"
"Marked: %d", "Marked: %d",
chan->name, ast_channel_name(chan),
conf->confno, conf->confno,
conf->markedusers); conf->markedusers);
if (!ast_check_hangup(chan)) if (!ast_check_hangup(chan))
res = ast_autoservice_start(chan); res = ast_autoservice_start(chan);
@@ -4607,7 +4607,7 @@ static int conf_exec(struct ast_channel *chan, const char *data)
/* Prompt user for pin if pin is required */ /* Prompt user for pin if pin is required */
ast_test_suite_event_notify("PLAYBACK", "Message: conf-getpin\r\n" ast_test_suite_event_notify("PLAYBACK", "Message: conf-getpin\r\n"
"Channel: %s", "Channel: %s",
chan->name); ast_channel_name(chan));
res = ast_app_getdata(chan, "conf-getpin", pin + strlen(pin), sizeof(pin) - 1 - strlen(pin), 0); res = ast_app_getdata(chan, "conf-getpin", pin + strlen(pin), sizeof(pin) - 1 - strlen(pin), 0);
} }
if (res >= 0) { if (res >= 0) {