[asterisk-commits] file: trunk r50821 - in /trunk: ./ main/astmm.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sun Jan 14 15:00:51 MST 2007


Author: file
Date: Sun Jan 14 16:00:51 2007
New Revision: 50821

URL: http://svn.digium.com/view/asterisk?view=rev&rev=50821
Log:
Merged revisions 50820 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r50820 | file | 2007-01-14 16:59:05 -0500 (Sun, 14 Jan 2007) | 2 lines

Add missing newlines for two memory CLI commands.

........

Modified:
    trunk/   (props changed)
    trunk/main/astmm.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/main/astmm.c
URL: http://svn.digium.com/view/asterisk/trunk/main/astmm.c?view=diff&rev=50821&r1=50820&r2=50821
==============================================================================
--- trunk/main/astmm.c (original)
+++ trunk/main/astmm.c Sun Jan 14 16:00:51 2007
@@ -347,7 +347,7 @@
 	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 @@
 	}
 
 	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);
 



More information about the asterisk-commits mailing list