Skip to content
Snippets Groups Projects
Commit 6b14886d authored by Kinsey Moore's avatar Kinsey Moore
Browse files

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
parent 4b4fe69f
No related branches found
No related tags found
No related merge requests found
......@@ -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 "";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment