diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-20 14:48:55 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-20 14:48:55 +0200 |
commit | 9c49d5908d0790f7f1e7b0f2eb077dac2d2d7907 (patch) | |
tree | 79f5ca1da710d02b136731697de3ee09e813708b | |
parent | d61681f9e99e7caf6b39e0e596d198d3b96f3792 (diff) | |
download | ffmpeg-9c49d5908d0790f7f1e7b0f2eb077dac2d2d7907.tar.gz |
avutil/hmac: silence pointer type warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavutil/hmac.c | 10 |
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: |