aboutsummaryrefslogtreecommitdiff
path: root/src/node_module_bundle.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_module_bundle.zig')
-rw-r--r--src/node_module_bundle.zig2
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());