Author: mjordan Date: Mon Apr 6 12:52:31 2015 New Revision: 434089 URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=434089 Log: clang compiler warnings: Fix format specified in framehook
This patch fixes an invalid format specifier used in the formatting of an ERROR message in the framehook code. The format specifier specifies a type of 'unsigned short', but the argument passed to it is of type 'int'. The patch changes the format specifier to 'i'. Review: https://reviewboard.asterisk.org/r/4540 ASTERISK-24917 Reported by: dkdegroot patches: rb4535.patch submitted by dkdegroot (License 6600) ........ Merged revisions 434087 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 434088 from http://svn.asterisk.org/svn/asterisk/branches/13 Modified: trunk/ (props changed) trunk/main/framehook.c Propchange: trunk/ ------------------------------------------------------------------------------ Binary property 'branch-13-merged' - no diff available. Modified: trunk/main/framehook.c URL: http://svnview.digium.com/svn/asterisk/trunk/main/framehook.c?view=diff&rev=434089&r1=434088&r2=434089 ============================================================================== --- trunk/main/framehook.c (original) +++ trunk/main/framehook.c Mon Apr 6 12:52:31 2015 @@ -137,7 +137,7 @@ struct ast_framehook_list *fh_list; struct ast_frame *frame; if (i->version != AST_FRAMEHOOK_INTERFACE_VERSION) { - ast_log(LOG_ERROR, "Version '%hu' of framehook interface not what we compiled against (%hu)\n", + ast_log(LOG_ERROR, "Version '%hu' of framehook interface not what we compiled against (%i)\n", i->version, AST_FRAMEHOOK_INTERFACE_VERSION); return -1; } -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- svn-commits mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/svn-commits