{flake.lock,Cargo.*}: bump
Build and test / check (push) Successful in 1m12s
Build and test / build (push) Successful in 1m40s
Build and test / test (push) Successful in 2m12s
Build and test / docs (push) Successful in 6m20s

This commit is contained in:
2026-07-20 17:29:29 +09:00
parent 3297d145b4
commit a89deefceb
9 changed files with 295 additions and 207 deletions
+6 -1
View File
@@ -205,7 +205,12 @@ impl Whod {
let mut wd_we = array::from_fn(|_| Whoent::zeroed());
for (byte_chunk, whoent) in bytes.chunks_exact(Whoent::SIZE).zip(wd_we.iter_mut()) {
for (byte_chunk, whoent) in bytes
.as_chunks::<{ Whoent::SIZE }>()
.0
.iter()
.zip(wd_we.iter_mut())
{
let mut chunk_bytes = bytes::Bytes::copy_from_slice(byte_chunk);
let mut out_line = [0u8; Outmp::MAX_TTY_NAME_LEN];