mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 19:16:15 +00:00
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
This commit is contained in:
@@ -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 "";
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user