aboutsummaryrefslogtreecommitdiffstats
path: root/main/astmm.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-14 21:59:05 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-14 21:59:05 +0000
commit634b0dd0e719e18eee127e461c23a09f5193d51e (patch)
tree505230875d753ddec4c498921772954947412401 /main/astmm.c
parent6d60d95f9da16c65676ffc6e7741277cae09a52d (diff)
Add missing newlines for two memory CLI commands.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@50820 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/astmm.c')
-rw-r--r--main/astmm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/astmm.c b/main/astmm.c
index 40d7502cd..948d26e6a 100644
--- a/main/astmm.c
+++ b/main/astmm.c
@@ -347,7 +347,7 @@ static int handle_show_memory(int fd, int argc, char *argv[])
ast_mutex_unlock(&showmemorylock);
if (cache_len)
- ast_cli(fd, "%d bytes allocated (%d in caches) in %d allocations", len, cache_len, count);
+ ast_cli(fd, "%d bytes allocated (%d in caches) in %d allocations\n", len, cache_len, count);
else
ast_cli(fd, "%d bytes allocated in %d allocations\n", len, count);
@@ -424,7 +424,7 @@ static int handle_show_memory_summary(int fd, int argc, char *argv[])
}
if (cache_len)
- ast_cli(fd, "%d bytes allocated (%d in caches) in %d allocations", len, cache_len, count);
+ ast_cli(fd, "%d bytes allocated (%d in caches) in %d allocations\n", len, cache_len, count);
else
ast_cli(fd, "%d bytes allocated in %d allocations\n", len, count);