From a3e273b7bd4d80e3ff8ccfca8e1ed5a0cc813d55 Mon Sep 17 00:00:00 2001 From: russell Date: Sat, 20 Mar 2010 18:29:46 +0000 Subject: Resolve 1.6.0 compilation issues on FreeBSD. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@253630 f38db490-d61c-443f-a65b-d21fe96a405b --- main/features.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/features.c') diff --git a/main/features.c b/main/features.c index ea072b282..6e26fe7d9 100644 --- a/main/features.c +++ b/main/features.c @@ -3730,7 +3730,7 @@ static char *handle_parkedcalls(struct ast_cli_entry *e, int cmd, struct ast_cli AST_LIST_TRAVERSE(&parkinglot, cur, list) { ast_cli(a->fd, "%-10.10s %25s (%-15s %-12s %-4d) %6lds\n" ,cur->parkingexten, cur->chan->name, cur->context, cur->exten - ,cur->priority, cur->start.tv_sec + (cur->parkingtime/1000) - time(NULL)); + ,cur->priority, (long) cur->start.tv_sec + (cur->parkingtime/1000) - time(NULL)); numparked++; } -- cgit v1.2.3