zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 739b68938cb233d88e47ab73047787aba0ccb918 (tree)
parent 6af9bc8c686c5eeaff274fa7ebb96b1ead3212ce
Author: Frank Denis <124872+jedisct1@users.noreply.github.com>
Date:   Fri, 14 Aug 2020 16:23:55 +0200

Update lib/std/crypto/25519/field25519.zig

Co-authored-by: Jakub Konka <kubkon@jakubkonka.com>
Diffstat:
Mlib/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 @@ -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;