summaryrefslogtreecommitdiff
path: root/main/ast_expr2.y
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-07-05 20:52:29 +0000
committerRussell Bryant <russell@russellbryant.com>2007-07-05 20:52:29 +0000
commit2b0ec8163908b3dc82e8ee999d30c264a1c3dfe9 (patch)
treeb75d7666b38436f278669a988e80f40a66820409 /main/ast_expr2.y
parent66439344033f384ac14107e73066d0fbbd9ea529 (diff)
resolve a compiler warning so i can build in dev mode
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@73514 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/ast_expr2.y')
-rw-r--r--main/ast_expr2.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/ast_expr2.y b/main/ast_expr2.y
index d6c5e8eaa..89baf91bd 100644
--- a/main/ast_expr2.y
+++ b/main/ast_expr2.y
@@ -647,7 +647,7 @@ static char *compose_func_args(struct expr_node *arglist)
}
t = t->right;
}
- ast_log(LOG_NOTICE,"argbuf uses %d bytes;\n", strlen(argbuf));
+ ast_log(LOG_NOTICE,"argbuf uses %d bytes;\n", (int) strlen(argbuf));
return argbuf;
}