[svn-commits] kmoore: trunk r414475 - in /trunk: ./ main/event.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri May 23 09:36:54 CDT 2014


Author: kmoore
Date: Fri May 23 09:36:40 2014
New Revision: 414475

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=414475
Log:
Fix signed/unsigned build warnings
........

Merged revisions 414474 from http://svn.asterisk.org/svn/asterisk/branches/12

Modified:
    trunk/   (props changed)
    trunk/main/event.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.

Modified: trunk/main/event.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/event.c?view=diff&rev=414475&r1=414474&r2=414475
==============================================================================
--- trunk/main/event.c (original)
+++ trunk/main/event.c Fri May 23 09:36:40 2014
@@ -200,7 +200,7 @@
 	type = ast_event_get_type(event);
 
 	if (type < 0 || type >= ARRAY_LEN(event_names)) {
-		ast_log(LOG_ERROR, "Invalid event type - '%d'\n", type);
+		ast_log(LOG_ERROR, "Invalid event type - '%u'\n", type);
 		return "";
 	}
 




More information about the svn-commits mailing list