diff --git a/apps/app_queue.c b/apps/app_queue.c
index ac6fc3ae52f2dd4ea4fed88db050d6e58d67568a..eee390cbde982512ecf2695d995f4ffd4baaa1fc 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;
diff --git a/logger.c b/logger.c
index 421eaf5e1be1126bec4a22ab206640e2b2ba5602..a22f78d5a7855aa67bea10c1a1c8045d0f831e0b 100755
--- a/logger.c
+++ b/logger.c
@@ -252,9 +252,9 @@ static void queue_log_init(void)
 	qlog = fopen(filename, "a");
 	ast_mutex_unlock(&qloglock);
 	if (reloaded) 
-		ast_queue_log("NONE", "NONE", "NONE", "CONFIGRELOAD", "");
+		ast_queue_log("NONE", "NONE", "NONE", "CONFIGRELOAD", "%s", "");
 	else
-		ast_queue_log("NONE", "NONE", "NONE", "QUEUESTART", "");
+		ast_queue_log("NONE", "NONE", "NONE", "QUEUESTART", "%s", "");
 }
 
 int reload_logger(int rotate)