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;