Commit fdfb8c84 authored by Emilia Kasper's avatar Emilia Kasper
Browse files

curve25519: add missing const-qualifier



Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
parent e9abfc3a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);