diff --git a/lib/std/os/windows/user32.zig b/lib/std/os/windows/user32.zig index 0138f225464d8be20ceab677eee3bfb8b6828ad2..ee4ee87d88e2f92a27a79bae92d4afe6fe35b6a7 100644 --- a/lib/std/os/windows/user32.zig +++ b/lib/std/os/windows/user32.zig @@ -14,7 +14,7 @@ const SetLastError = windows.kernel32.SetLastError; fn selectSymbol(comptime function_static: anytype, function_dynamic: @TypeOf(function_static), comptime os: std.Target.Os.WindowsVersion) @TypeOf(function_static) { comptime { - const sym_ok = builtin.Target.current.os.isAtLeast(.windows, os); + const sym_ok = std.Target.current.os.isAtLeast(.windows, os); if (sym_ok == true) return function_static; if (sym_ok == null) return function_dynamic; if (sym_ok == false) @compileError("Target OS range does not support function, at least " ++ @tagName(os) ++ " is required");