summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJames Golovich <james@gnuinter.net>2004-02-27 04:32:54 +0000
committerJames Golovich <james@gnuinter.net>2004-02-27 04:32:54 +0000
commita303a83b92650ca454a44d7e77be9a0eee02b5c5 (patch)
treec703bf92e9b0c0a3500b67b639ea56b3ad8abd4c /apps
parente8c21dfe67f87b1080188fc3def297070ac47b9b (diff)
Get rid of compiler warnings when calling ast_queue_log
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2257 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index ac6fc3ae5..eee390cbd 100755
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -833,7 +833,7 @@ static int try_calling(struct queue_ent *qe, char *options, char *announceoverri
if (res2) {
/* Agent must have hung up */
ast_log(LOG_WARNING, "Agent on %s hungup on the customer. They're going to be pissed.\n", peer->name);
- ast_queue_log(queuename, qe->chan->uniqueid, peer->name, "AGENTDUMP", "");
+ ast_queue_log(queuename, qe->chan->uniqueid, peer->name, "AGENTDUMP", "%s", "");
ast_hangup(peer);
return -1;
}
@@ -844,7 +844,7 @@ static int try_calling(struct queue_ent *qe, char *options, char *announceoverri
/* Make sure channels are compatible */
res = ast_channel_make_compatible(qe->chan, peer);
if (res < 0) {
- ast_queue_log(queuename, qe->chan->uniqueid, peer->name, "SYSCOMPAT", "");
+ ast_queue_log(queuename, qe->chan->uniqueid, peer->name, "SYSCOMPAT", "%s", "");
ast_log(LOG_WARNING, "Had to drop call because I couldn't make %s compatible with %s\n", qe->chan->name, peer->name);
ast_hangup(peer);
return -1;