From fdfb8c848679d74fd492e3b306500f2da0570c17 Mon Sep 17 00:00:00 2001 From: Emilia Kasper Date: Wed, 2 Mar 2016 17:23:36 +0100 Subject: [PATCH 1/1] curve25519: add missing const-qualifier Reviewed-by: Kurt Roeckx --- crypto/ec/curve25519.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/ec/curve25519.c b/crypto/ec/curve25519.c index d51632c2c3..8b5fadf44b 100644 --- a/crypto/ec/curve25519.c +++ b/crypto/ec/curve25519.c @@ -1040,7 +1040,7 @@ static uint8_t equal(signed char b, signed char c) { return y; } -static void cmov(ge_precomp *t, ge_precomp *u, uint8_t b) { +static void cmov(ge_precomp *t, const ge_precomp *u, uint8_t b) { fe_cmov(t->yplusx, u->yplusx, b); fe_cmov(t->yminusx, u->yminusx, b); fe_cmov(t->xy2d, u->xy2d, b); -- 2.34.1