summaryrefslogtreecommitdiff
path: root/main/test.c
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2014-12-04 17:13:48 +0000
committerMatthew Jordan <mjordan@digium.com>2014-12-04 17:13:48 +0000
commit19992844be43acda319a326e8f7489be3343ca80 (patch)
tree9fa0a8c75495875855674629b66693471120b001 /main/test.c
parent343a83d7d87f9090ed6a3003ff752208545c884e (diff)
main/test: Fix compilation issue on 32-bit systems
On a 32-bit system, a type of intmax_t will result in a compilation warning when formatted as a 'long int'. Use the format specifier of %jd (which was what was used originally in manager.c) to format the JSON extracted integer on both 32-/64-bit systems. ........ Merged revisions 428972 from http://svn.asterisk.org/svn/asterisk/branches/12 ........ Merged revisions 428973 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@428974 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/test.c')
-rw-r--r--main/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/test.c b/main/test.c
index 1ad7b238c..f64a572fd 100644
--- a/main/test.c
+++ b/main/test.c
@@ -1035,7 +1035,7 @@ static struct ast_manager_event_blob *test_suite_event_to_ami(struct stasis_mess
ast_json_string_get(ast_json_object_get(blob, "appfile")));
ast_str_append(&packet_string, 0, "AppFunction: %s\r\n",
ast_json_string_get(ast_json_object_get(blob, "appfunction")));
- ast_str_append(&packet_string, 0, "AppLine: %ld\r\n",
+ ast_str_append(&packet_string, 0, "AppLine: %jd\r\n",
ast_json_integer_get(ast_json_object_get(blob, "line")));
ast_str_append(&packet_string, 0, "%s\r\n",
ast_json_string_get(ast_json_object_get(blob, "data")));