diff options
Diffstat (limited to 'src/node_module_bundle.zig')
-rw-r--r-- | src/node_module_bundle.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_module_bundle.zig b/src/node_module_bundle.zig index f5421c810..f0415df9c 100644 --- a/src/node_module_bundle.zig +++ b/src/node_module_bundle.zig @@ -62,7 +62,7 @@ pub const NodeModuleBundle = struct { return code.str; } - var file = std.fs.File{ .handle = this.fd }; + var file = Fs.File{ .handle = this.fd }; var buf = try allocator.alloc(u8, this.code_end_pos); const count = try file.preadAll(buf, this.codeStartOffset()); |