From b30d67bc0c22534500cd17459446c4c315468b30 Mon Sep 17 00:00:00 2001 From: kpfleming Date: Fri, 29 Sep 2006 13:45:40 +0000 Subject: proper fix for ast_group_t change git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@43978 f38db490-d61c-443f-a65b-d21fe96a405b --- main/cli.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'main/cli.c') diff --git a/main/cli.c b/main/cli.c index 5958603a7..b844774fc 100644 --- a/main/cli.c +++ b/main/cli.c @@ -891,8 +891,8 @@ static int handle_showchan(int fd, int argc, char *argv[]) " Context: %s\n" " Extension: %s\n" " Priority: %d\n" - " Call Group: %d\n" - " Pickup Group: %d\n" + " Call Group: %llu\n" + " Pickup Group: %llu\n" " Application: %s\n" " Data: %s\n" " Blocking in: %s\n", @@ -910,7 +910,7 @@ static int handle_showchan(int fd, int argc, char *argv[]) c->fout & ~DEBUGCHAN_FLAG, (c->fout & DEBUGCHAN_FLAG) ? " (DEBUGGED)" : "", (long)c->whentohangup, cdrtime, c->_bridge ? c->_bridge->name : "", ast_bridged_channel(c) ? ast_bridged_channel(c)->name : "", - c->context, c->exten, c->priority, (int) c->callgroup, (int) c->pickupgroup, ( c->appl ? c->appl : "(N/A)" ), + c->context, c->exten, c->priority, c->callgroup, c->pickupgroup, ( c->appl ? c->appl : "(N/A)" ), ( c-> data ? S_OR(c->data, "(Empty)") : "(None)"), (ast_test_flag(c, AST_FLAG_BLOCKING) ? c->blockproc : "(Not Blocking)")); -- cgit v1.2.3