From 6300c37152081447cc6c034a580db344e2f10bea Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Fri, 25 Jan 2013 14:23:46 +0000 Subject: [PATCH] Add a missing '\' to a log message. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@380082 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_sorcery_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/res_sorcery_config.c b/res/res_sorcery_config.c index 9fe636d683..6f13cbb4be 100644 --- a/res/res_sorcery_config.c +++ b/res/res_sorcery_config.c @@ -203,7 +203,7 @@ static void sorcery_config_internal_load(void *data, const struct ast_sorcery *s const char *id = NULL; if (!cfg) { - ast_log(LOG_ERROR, "Unable to load config file '%s'n", config->filename); + ast_log(LOG_ERROR, "Unable to load config file '%s'\n", config->filename); return; } else if (cfg == CONFIG_STATUS_FILEUNCHANGED) { ast_debug(1, "Config file '%s' was unchanged\n", config->filename);