summaryrefslogtreecommitdiff
path: root/funcs/func_sha1.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-02-16 17:21:56 +0000
committerRussell Bryant <russell@russellbryant.com>2006-02-16 17:21:56 +0000
commit2b357881a752b855614aad6beae24259f9c1b2d9 (patch)
treeec5f6f534c848f5473a570290159936c721feee0 /funcs/func_sha1.c
parent98d0d296fbd1d705beaebb8db080b3035df1a381 (diff)
suppress compiler warning
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10286 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs/func_sha1.c')
-rw-r--r--funcs/func_sha1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs/func_sha1.c b/funcs/func_sha1.c
index c9805d2a3..30c6b6c3a 100644
--- a/funcs/func_sha1.c
+++ b/funcs/func_sha1.c
@@ -52,7 +52,7 @@ static int sha1(struct ast_channel *chan, char *cmd, char *data,
else {
ast_log(LOG_ERROR,
"Insufficient space to produce SHA1 hash result (%d < 41)\n",
- len);
+ (int) len);
}
return 0;