From 2be6d9d7c174007ac0018fed802364d2115f0283 Mon Sep 17 00:00:00 2001 From: markster Date: Mon, 8 Sep 2003 16:48:07 +0000 Subject: BSD portability enhancements (bug #234) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1486 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_mgcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'channels/chan_mgcp.c') diff --git a/channels/chan_mgcp.c b/channels/chan_mgcp.c index 1e40d5a73..5871d0449 100755 --- a/channels/chan_mgcp.c +++ b/channels/chan_mgcp.c @@ -413,7 +413,7 @@ static int mgcp_postrequest(struct mgcp_subchannel *sub, unsigned char *data, in time(&t); if (sub->messagepending && (sub->lastouttime + 20 < t)) { ast_log(LOG_NOTICE, "Timeout waiting for response to message:%d, lastouttime: %ld, now: %ld. Dumping pending queue\n", - sub->msgs ? sub->msgs->seqno : -1, sub->lastouttime, t); + sub->msgs ? sub->msgs->seqno : -1, (long) sub->lastouttime, (long) t); dump_queue(sub->parent); } msg->seqno = seqno; @@ -2546,7 +2546,7 @@ static void *do_monitor(void *data) static int restart_monitor(void) { /* If we're supposed to be stopped -- stay stopped */ - if (monitor_thread == -2) + if (monitor_thread == (pthread_t) -2) return 0; if (ast_mutex_lock(&monlock)) { ast_log(LOG_WARNING, "Unable to lock monitor\n"); -- cgit v1.2.3