Missed a spot..

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@93420 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jason Parker
2007-12-17 22:56:58 +00:00
parent 7e7db434e4
commit 6fa23de8ac

View File

@@ -590,7 +590,7 @@ static int show_translation(int fd, int argc, char *argv[])
ast_cli(fd, " Source Format (Rows) Destination Format (Columns)\n\n");
/* Get the length of the longest (usable?) codec name, so we know how wide the left side should be */
for (x = 0; x < SHOW_TRANS; x++) {
curlen = strlen(ast_getformatname(1 << (x + 1)));
curlen = strlen(ast_getformatname(1 << (x)));
if (curlen > longest)
longest = curlen;
}