diff options
Diffstat (limited to 'src/http/url_path.zig')
-rw-r--r-- | src/http/url_path.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/url_path.zig b/src/http/url_path.zig index 24bcea76b..ba8bee297 100644 --- a/src/http/url_path.zig +++ b/src/http/url_path.zig @@ -69,7 +69,7 @@ pub fn parse(possibly_encoded_pathname_: string) !URLPath { possibly_encoded_pathname.len, )]; - std.mem.copy(u8, possibly_encoded_pathname, possibly_encoded_pathname_[0..possibly_encoded_pathname.len]); + bun.copy(u8, possibly_encoded_pathname, possibly_encoded_pathname_[0..possibly_encoded_pathname.len]); var clone = possibly_encoded_pathname[0..possibly_encoded_pathname.len]; var fbs = std.io.fixedBufferStream( |