From: Russell Bryant Date: Fri, 6 May 2005 07:17:17 +0000 (+0000) Subject: add missing newline to warning message (bug #4183) X-Git-Tag: 1.0.11.1~141 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d263c243acf6faeeb3da0bed55e866c7a627ed4;p=thirdparty%2Fasterisk.git add missing newline to warning message (bug #4183) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5592 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_monitor.c b/res/res_monitor.c index 01271bee07..39c8f9f3e7 100755 --- a/res/res_monitor.c +++ b/res/res_monitor.c @@ -292,7 +292,7 @@ int ast_monitor_change_fname(struct ast_channel *chan, const char *fname_base, i snprintf(chan->monitor->filename_base, FILENAME_MAX, "%s/%s", directory ? "" : AST_MONITOR_DIR, fname_base); } else { - ast_log(LOG_WARNING, "Cannot change monitor filename of channel %s to %s, monitoring not started", chan->name, fname_base); + ast_log(LOG_WARNING, "Cannot change monitor filename of channel %s to %s, monitoring not started\n", chan->name, fname_base); } if (need_lock)