summaryrefslogtreecommitdiff
path: root/tests/test_optional_api.c
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2014-07-22 14:22:00 +0000
committerKinsey Moore <kmoore@digium.com>2014-07-22 14:22:00 +0000
commit9056c23bbd7247bc7b6f122382c84a759d64cef9 (patch)
tree951f92904824094adc53be4a9d0e6980522f2bae /tests/test_optional_api.c
parent878db87fc09327b2116ecc291dde8595396dd19e (diff)
Fix more dev-mode build issues
........ Merged revisions 419129 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 419162 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 419163 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@419175 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'tests/test_optional_api.c')
-rw-r--r--tests/test_optional_api.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_optional_api.c b/tests/test_optional_api.c
index 841dd5f86..6a7d394c5 100644
--- a/tests/test_optional_api.c
+++ b/tests/test_optional_api.c
@@ -99,7 +99,7 @@ AST_TEST_DEFINE(test_provide_first)
test_optional();
if (was_called_result != IMPL) {
- ast_test_status_update(test, "Expected %d, was %d",
+ ast_test_status_update(test, "Expected %d, was %u",
IMPL, was_called_result);
goto done;
}
@@ -135,7 +135,7 @@ AST_TEST_DEFINE(test_provide_last)
test_optional();
if (was_called_result != STUB) {
- ast_test_status_update(test, "Expected %d, was %d",
+ ast_test_status_update(test, "Expected %d, was %u",
STUB, was_called_result);
goto done;
}
@@ -144,7 +144,7 @@ AST_TEST_DEFINE(test_provide_last)
test_optional();
if (was_called_result != IMPL) {
- ast_test_status_update(test, "Expected %d, was %d",
+ ast_test_status_update(test, "Expected %d, was %u",
IMPL, was_called_result);
ast_optional_api_unprovide(SYMNAME, test_optional_impl);
goto done;
@@ -154,7 +154,7 @@ AST_TEST_DEFINE(test_provide_last)
test_optional();
if (was_called_result != STUB) {
- ast_test_status_update(test, "Expected %d, was %d",
+ ast_test_status_update(test, "Expected %d, was %u",
STUB, was_called_result);
ast_optional_api_unprovide(SYMNAME, test_optional_impl);
goto done;