From adf74ba4fb86b9fa95739e9e6cb78bf93858e1a5 Mon Sep 17 00:00:00 2001 From: Ryan Liptak Date: Sun, 16 Nov 2025 03:45:38 -0800 Subject: windows.eqlIgnoreCaseWTF16 -> eqlIgnoreCaseWtf16 Consistent with naming of other, similar functions --- lib/std/process/Child.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/std/process') diff --git a/lib/std/process/Child.zig b/lib/std/process/Child.zig index 63cad29b85..da8d803d60 100644 --- a/lib/std/process/Child.zig +++ b/lib/std/process/Child.zig @@ -1227,7 +1227,7 @@ fn windowsCreateProcessPathExt( const app_name = app_buf.items[0..app_name_len]; const ext_start = std.mem.lastIndexOfScalar(u16, app_name, '.') orelse break :unappended err; const ext = app_name[ext_start..]; - if (windows.eqlIgnoreCaseWTF16(ext, unicode.utf8ToUtf16LeStringLiteral(".EXE"))) { + if (windows.eqlIgnoreCaseWtf16(ext, unicode.utf8ToUtf16LeStringLiteral(".EXE"))) { return error.UnrecoverableInvalidExe; } break :unappended err; @@ -1278,7 +1278,7 @@ fn windowsCreateProcessPathExt( // On InvalidExe, if the extension of the app name is .exe then // it's treated as an unrecoverable error. Otherwise, it'll be // skipped as normal. - if (windows.eqlIgnoreCaseWTF16(ext, unicode.utf8ToUtf16LeStringLiteral(".EXE"))) { + if (windows.eqlIgnoreCaseWtf16(ext, unicode.utf8ToUtf16LeStringLiteral(".EXE"))) { return error.UnrecoverableInvalidExe; } continue; -- cgit v1.2.3