aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-27 18:15:58 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-27 18:15:58 +0000
commitdb332bb88e8ba750aa4dd010c24aa71060483a7e (patch)
tree23af1cca2604ae744bfa9f7484cc7e31d4d2f0af /res
parent77a6272bd99ef1a771b41991606cef7e60b0f229 (diff)
Missing newline
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@77571 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_odbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_odbc.c b/res/res_odbc.c
index 461e941e0..c6d796f56 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 */