aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-17 00:23:12 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-17 00:23:12 +0000
commit5ecc36c00f227469ea7bf55355f4d16781a78372 (patch)
tree43f12e2d645207cfee58454f637ad44e30d2de13
parentabbeaec6b3be27ff95ff56f85674bc2d9f94fa59 (diff)
Argh.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@253004 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--tests/test_gosub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_gosub.c b/tests/test_gosub.c
index 5fb56dece..b10e73ed5 100644
--- a/tests/test_gosub.c
+++ b/tests/test_gosub.c
@@ -144,7 +144,7 @@ AST_TEST_DEFINE(test_gosub)
}
if ((exec_res = pbx_exec(chan, app, testplan[i].args)) && ((const char *) exec_res != testplan[i].expected_value)) {
- ast_test_status_update(test, "Application '%s' exited abnormally (with code %d)\n", testplan[i].app, exec_res);
+ ast_test_status_update(test, "Application '%s' exited abnormally (with code %d)\n", testplan[i].app, (int) exec_res);
res = AST_TEST_FAIL;
break;
}