From: Kinsey Moore Date: Fri, 23 May 2014 14:36:40 +0000 (+0000) Subject: Fix signed/unsigned build warnings X-Git-Tag: 13.0.0-beta1~264 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b14886dc747ee8e876e982aa7c892810fb8783b;p=thirdparty%2Fasterisk.git Fix signed/unsigned build warnings ........ Merged revisions 414474 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@414475 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/event.c b/main/event.c index 876e53b88f..35076ec94a 100644 --- a/main/event.c +++ b/main/event.c @@ -200,7 +200,7 @@ const char *ast_event_get_type_name(const struct ast_event *event) 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 ""; }