summaryrefslogtreecommitdiff
path: root/libavutil/hmac.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-20 14:48:55 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-20 14:48:55 +0200
commit9c49d5908d0790f7f1e7b0f2eb077dac2d2d7907 (patch)
tree79f5ca1da710d02b136731697de3ee09e813708b /libavutil/hmac.c
parentd61681f9e99e7caf6b39e0e596d198d3b96f3792 (diff)
avutil/hmac: silence pointer type warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/hmac.c')
-rw-r--r--libavutil/hmac.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavutil/hmac.c b/libavutil/hmac.c
index c5a1c89250..f1cf7a4326 100644
--- a/libavutil/hmac.c
+++ b/libavutil/hmac.c
@@ -53,17 +53,17 @@ AVHMAC *av_hmac_alloc(enum AVHMACType type)
case AV_HMAC_MD5:
c->blocklen = 64;
c->hashlen = 16;
- c->init = av_md5_init;
- c->update = av_md5_update;
- c->final = av_md5_final;
+ c->init = (void*)av_md5_init;
+ c->update = (void*)av_md5_update;
+ c->final = (void*)av_md5_final;
c->hash = av_md5_alloc();
break;
case AV_HMAC_SHA1:
c->blocklen = 64;
c->hashlen = 20;
c->init = sha1_init;
- c->update = av_sha_update;
- c->final = av_sha_final;
+ c->update = (void*)av_sha_update;
+ c->final = (void*)av_sha_final;
c->hash = av_sha_alloc();
break;
default: