diff options
Diffstat (limited to 'src/linear_fifo.zig')
-rw-r--r-- | src/linear_fifo.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linear_fifo.zig b/src/linear_fifo.zig index 9ce8881ea..faa631958 100644 --- a/src/linear_fifo.zig +++ b/src/linear_fifo.zig @@ -11,7 +11,7 @@ const Allocator = mem.Allocator; const debug = std.debug; const assert = debug.assert; const testing = std.testing; -const bun = @import("./global.zig"); +const bun = @import("bun"); pub const LinearFifoBufferType = union(enum) { /// The buffer is internal to the fifo; it is of the specified size. |