From 27e0e17fc93fe480176a0dc8379178140f787909 Mon Sep 17 00:00:00 2001 From: rizzo Date: Fri, 21 Apr 2006 14:49:21 +0000 Subject: - use symbolic constants and macros to play with the debug flag on the frame counters. Document it in the header file. - provide a single exit point for a function; - mark XXX some unclear parts of the code. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@21933 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_dumpchan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/app_dumpchan.c b/apps/app_dumpchan.c index aa8854620..5124cc2c4 100644 --- a/apps/app_dumpchan.c +++ b/apps/app_dumpchan.c @@ -114,8 +114,8 @@ static int ast_serialize_showchan(struct ast_channel *c, char *buf, size_t size) c->nativeformats, c->writeformat, c->readformat, - c->fds[0], c->fin & 0x7fffffff, (c->fin & 0x80000000) ? " (DEBUGGED)" : "", - c->fout & 0x7fffffff, (c->fout & 0x80000000) ? " (DEBUGGED)" : "", (long)c->whentohangup, + c->fds[0], c->fin & ~DEBUGCHAN_FLAG, (c->fin & DEBUGCHAN_FLAG) ? " (DEBUGGED)" : "", + c->fout & ~DEBUGCHAN_FLAG, (c->fout & DEBUGCHAN_FLAG) ? " (DEBUGGED)" : "", (long)c->whentohangup, hour, min, sec, -- cgit v1.2.3