[Asterisk-cvs] asterisk/apps app_queue.c,1.35,1.36

markster at lists.digium.com markster at lists.digium.com
Fri Sep 26 21:23:41 CDT 2003


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv19230/apps

Modified Files:
	app_queue.c 
Log Message:
Fix printf to match int type (bug #247)


Index: app_queue.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_queue.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- app_queue.c	10 Sep 2003 05:24:49 -0000	1.35
+++ app_queue.c	27 Sep 2003 02:24:53 -0000	1.36
@@ -1383,7 +1383,7 @@
 			pos = 1;
 			ast_cli(fd, "   Callers: \n");
 			for (qe = q->head; qe; qe = qe->next) 
-				ast_cli(fd, "      %d. %s (wait: %d:%2.2d)\n", pos++, qe->chan->name,
+				ast_cli(fd, "      %d. %s (wait: %ld:%2.2ld)\n", pos++, qe->chan->name,
 								(now - qe->start) / 60, (now - qe->start) % 60);
 		} else
 			ast_cli(fd, "   No Callers\n");




More information about the svn-commits mailing list