diff --git a/lib/std/crypto/ml_kem.zig b/lib/std/crypto/ml_kem.zig index 4666148ed7..b2f38b82fe 100644 --- a/lib/std/crypto/ml_kem.zig +++ b/lib/std/crypto/ml_kem.zig @@ -1109,8 +1109,8 @@ const Poly = struct { // Set p to Decompress_q(m, d). fn decompress(comptime d: u8, in: *const [compressedSize(d)]u8) Poly { @setEvalBranchQuota(10000); - const inLen = comptime @divTrunc(N * d, 8); - comptime assert(inLen * 8 == d * N); + const in_len = comptime @divTrunc(N * d, 8); + comptime assert(in_len * 8 == d * N); var ret: Poly = undefined; var in_off: usize = 0; var out_off: usize = 0;