From: Tudor-Dan Ambarus Date: Fri, 29 Sep 2017 09:21:04 +0000 (+0300) Subject: crypto: dh - return unsigned int for dh_data_size() X-Git-Tag: v4.15-rc1~139^2~101 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=cb195b362537ca97ceccefbbba6b4071ed77434f;p=linux.git crypto: dh - return unsigned int for dh_data_size() p->key_size, p->p_size, p->g_size are all of unsigned int type. Signed-off-by: Tudor Ambarus Signed-off-by: Herbert Xu --- diff --git a/crypto/dh_helper.c b/crypto/dh_helper.c index 8ba8a3f82620..69869dad344a 100644 --- a/crypto/dh_helper.c +++ b/crypto/dh_helper.c @@ -28,7 +28,7 @@ static inline const u8 *dh_unpack_data(void *dst, const void *src, size_t size) return src + size; } -static inline int dh_data_size(const struct dh *p) +static inline unsigned int dh_data_size(const struct dh *p) { return p->key_size + p->p_size + p->g_size; }