From 3d379746ee2d75e3a2c5c1f7a4e5adf670e1db78 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 6 May 2019 10:57:36 +0200 Subject: [PATCH] Use size_t --- src/libsodium/crypto_core/ed25519/ref10/ed25519_ref10.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsodium/crypto_core/ed25519/ref10/ed25519_ref10.c b/src/libsodium/crypto_core/ed25519/ref10/ed25519_ref10.c index 4bd35c2d..dda67360 100644 --- a/src/libsodium/crypto_core/ed25519/ref10/ed25519_ref10.c +++ b/src/libsodium/crypto_core/ed25519/ref10/ed25519_ref10.c @@ -2612,7 +2612,7 @@ ge25519_from_hash(unsigned char s[32], const unsigned char h[64]) unsigned char gl[32]; fe25519 fe_f; fe25519 fe_g; - int i; + size_t i; unsigned char x_sign; x_sign = h[0] & 0x80;