From: Tilghman Lesher Date: Fri, 27 Jul 2007 18:15:58 +0000 (+0000) Subject: Missing newline X-Git-Tag: 1.4.10~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=548f3e339ed84ce6347ef63590ee2819f406dc14;p=thirdparty%2Fasterisk.git Missing newline git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@77571 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_odbc.c b/res/res_odbc.c index 461e941e0d..c6d796f56f 100644 --- a/res/res_odbc.c +++ b/res/res_odbc.c @@ -322,7 +322,7 @@ static int odbc_show_command(int fd, int argc, char **argv) ast_cli(fd, "Pooled: yes\nLimit: %d\nConnections in use: %d\n", class->limit, class->count); AST_LIST_TRAVERSE(&(class->odbc_obj), current, list) { - ast_cli(fd, " Connection %d: %s", ++count, current->up && ast_odbc_sanity_check(current) ? "connected" : "disconnected"); + ast_cli(fd, " Connection %d: %s\n", ++count, current->up && ast_odbc_sanity_check(current) ? "connected" : "disconnected"); } } else { /* Should only ever be one of these */