diff --git a/lib/std/fifo.zig b/lib/std/fifo.zig index 73f9b2dee7..22da02c8af 100644 --- a/lib/std/fifo.zig +++ b/lib/std/fifo.zig @@ -12,7 +12,7 @@ const testing = std.testing; pub fn FixedSizeFifo(comptime T: type) type { return struct { allocator: *Allocator, - buf: []u8, + buf: []T, head: usize, count: usize,