fix 'show codec' (bug #3427)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4904 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2005-01-28 01:18:25 +00:00
parent 5571294b91
commit 1714f299c9

View File

@@ -595,7 +595,7 @@ static int show_codec_n(int fd, int argc, char *argv[])
for (i=0;i<32;i++)
if (codec & (1 << i)) {
found = 1;
ast_cli(fd, "%11u (1 << %2d) %s\n",1 << i,i,ast_codec2str(i));
ast_cli(fd, "%11u (1 << %2d) %s\n",1 << i,i,ast_codec2str(1<<i));
}
if (! found)