Fix signed/unsigned build warnings

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@414474 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kinsey Moore
2014-05-23 14:35:00 +00:00
parent 3c34202363
commit b2992655d1
9 changed files with 21 additions and 21 deletions

View File

@@ -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 "";
}