[svn-commits] kmoore: trunk r415679 - in /trunk: ./ main/channel.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Jun 10 13:32:16 CDT 2014
Author: kmoore
Date: Tue Jun 10 13:32:12 2014
New Revision: 415679
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=415679
Log:
Fix build in dev mode due to signed/unsigned mismatch
........
Merged revisions 415678 from http://svn.asterisk.org/svn/asterisk/branches/12
Modified:
trunk/ (props changed)
trunk/main/channel.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.
Modified: trunk/main/channel.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/channel.c?view=diff&rev=415679&r1=415678&r2=415679
==============================================================================
--- trunk/main/channel.c (original)
+++ trunk/main/channel.c Tue Jun 10 13:32:12 2014
@@ -2596,7 +2596,7 @@
/*! \brief Softly hangup a channel, don't lock */
int ast_softhangup_nolock(struct ast_channel *chan, int cause)
{
- ast_debug(1, "Soft-Hanging (%#04x) up channel '%s'\n", cause, ast_channel_name(chan));
+ ast_debug(1, "Soft-Hanging (%#04x) up channel '%s'\n", (unsigned)cause, ast_channel_name(chan));
/* Inform channel driver that we need to be hung up, if it cares */
ast_channel_softhangup_internal_flag_add(chan, cause);
ast_queue_frame(chan, &ast_null_frame);
More information about the svn-commits
mailing list