diff --git a/lib/std/fifo.zig b/lib/std/fifo.zig index 73f9b2dee7fd12fd1fdc50207e2a8713386daf47..22da02c8af3a26654175f502a41779399af9c010 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,