aboutsummaryrefslogtreecommitdiffstats
path: root/logger.c
diff options
context:
space:
mode:
authorcitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-27 04:32:54 +0000
committercitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-27 04:32:54 +0000
commitb65ee3af4aa9102e07bf1dfde29d426f29c38a46 (patch)
treec703bf92e9b0c0a3500b67b639ea56b3ad8abd4c /logger.c
parentf0a93508bfc69d4e17a89ceb68ebca06293fb7f3 (diff)
Get rid of compiler warnings when calling ast_queue_log
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2257 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'logger.c')
-rwxr-xr-xlogger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/logger.c b/logger.c
index 421eaf5e1..a22f78d5a 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)