From: Russell Bryant Date: Thu, 16 Feb 2006 17:21:56 +0000 (+0000) Subject: suppress compiler warning X-Git-Tag: 1.4.0-beta1~2587 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b357881a752b855614aad6beae24259f9c1b2d9;p=thirdparty%2Fasterisk.git suppress compiler warning git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10286 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/funcs/func_sha1.c b/funcs/func_sha1.c index c9805d2a3f..30c6b6c3ab 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;