Index: channel.c =================================================================== RCS file: /usr/cvsroot/asterisk/channel.c,v retrieving revision 1.195 diff -u -r1.195 channel.c --- channel.c 15 May 2005 04:48:30 -0000 1.195 +++ channel.c 30 May 2005 23:33:46 -0000 @@ -81,10 +81,10 @@ static int show_channeltypes(int fd, int argc, char *argv[]) { -#define FORMAT "%-7.7s %-50.50s\n" +#define FORMAT "%-10.10s %-50.50s\n" struct chanlist *cl = backends; ast_cli(fd, FORMAT, "Type", "Description"); - ast_cli(fd, FORMAT, "------", "-----------"); + ast_cli(fd, FORMAT, "----------", "-----------"); if (ast_mutex_lock(&chlock)) { ast_log(LOG_WARNING, "Unable to lock channel list\n"); return -1; @@ -95,6 +95,8 @@ } ast_mutex_unlock(&chlock); return RESULT_SUCCESS; + +#undef FORMAT }