Fix compiler warning from GCC 4.10 fixup.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@413766 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Richard Mudgett
2014-05-13 00:16:16 +00:00
parent 530f6840c9
commit aa0b833bf6

View File

@@ -2427,7 +2427,7 @@ static void party_json_to_ami(struct ast_str **msg, const char *prefix, struct a
struct ast_json *subaddress = ast_json_object_get(party, "subaddress");
/* Combined party presentation */
ast_str_append(msg, 0, "%sPres: %zd (%s)\r\n", prefix,
ast_str_append(msg, 0, "%sPres: %jd (%s)\r\n", prefix,
ast_json_integer_get(presentation),
ast_json_string_get(presentation_txt));