From 739b68938cb233d88e47ab73047787aba0ccb918 Mon Sep 17 00:00:00 2001 From: Frank Denis <124872+jedisct1@users.noreply.github.com> Date: Fri, 14 Aug 2020 16:23:55 +0200 Subject: [PATCH] Update lib/std/crypto/25519/field25519.zig Co-authored-by: Jakub Konka --- lib/std/crypto/25519/field25519.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/crypto/25519/field25519.zig b/lib/std/crypto/25519/field25519.zig index 9061cbf011..fe5c28056a 100644 --- a/lib/std/crypto/25519/field25519.zig +++ b/lib/std/crypto/25519/field25519.zig @@ -3,7 +3,7 @@ const readIntLittle = std.mem.readIntLittle; const writeIntLittle = std.mem.writeIntLittle; pub const Fe = struct { - limbs: [5]u64 = undefined, + limbs: [5]u64, const MASK51: u64 = 0x7ffffffffffff;