From e435beb1ea5380a90774dbf51fdc8c941e486551 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 15 Dec 2016 12:46:03 +0100 Subject: crypto: consistently use size_t as type for length parameters size_t is the correct type to use for sizes. --- libavutil/sha.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'libavutil/sha.c') diff --git a/libavutil/sha.c b/libavutil/sha.c index 404effade2..03f93aed8c 100644 --- a/libavutil/sha.c +++ b/libavutil/sha.c @@ -290,7 +290,11 @@ av_cold int av_sha_init(AVSHA *ctx, int bits) return 0; } -void av_sha_update(AVSHA* ctx, const uint8_t* data, unsigned int len) +#if FF_API_CRYPTO_SIZE_T +void av_sha_update(struct AVSHA *ctx, const uint8_t *data, unsigned int len) +#else +void av_sha_update(struct AVSHA *ctx, const uint8_t *data, size_t len) +#endif { unsigned int i, j; -- cgit v1.2.3