aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_agi.c
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-04-27 22:47:36 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-04-27 22:47:36 +0000
commit7e91bd6da50b50d2bf3920150745304040df2499 (patch)
tree9b23808c6ac920bf1a5ada0bc0b81bedbdff53d1 /res/res_agi.c
parent1f58727ce1155c2f8e8c6914e22392fdcfc14f89 (diff)
Fix compile on systems without HAVE_NULLSAFE_PRINTF defined.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@259617 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_agi.c')
-rw-r--r--res/res_agi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index d0ba17e8d..466572423 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -3804,7 +3804,7 @@ AST_TEST_DEFINE(test_agi_null_docs)
if (noop_command.usage == NULL) {
res = AST_TEST_FAIL;
}
- if (noop_command.description == NULL) {
+ if (noop_command.syntax == NULL) {
res = AST_TEST_FAIL;
}
#endif