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
This commit is contained in:
Russell Bryant
2007-07-05 20:52:29 +00:00
parent 6643934403
commit 2b0ec81639
2 changed files with 2 additions and 2 deletions

View File

@@ -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;
}