From f28e3276e765848c7a1af51010a314c539af427f Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Sat, 28 May 2022 00:02:49 +0200 Subject: [PATCH] One more change. --- src/microsoft_craziness.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/microsoft_craziness.h b/src/microsoft_craziness.h index f5222e943..c3a7c2629 100644 --- a/src/microsoft_craziness.h +++ b/src/microsoft_craziness.h @@ -612,11 +612,11 @@ bool find_msvc_install_from_env_vars(Find_Result_Utf8 *result) { // to be set without a trailing '\' (apart from manually), so we can just // check paths without it (see use of `String end` in the loop below) String um_dir = build_context.metrics.arch == TargetArch_amd64 - ? make_string_c("um\\x64") - : make_string_c("um\\x86"); + ? str_lit("um\\x64") + : str_lit("um\\x86"); String ucrt_dir = build_context.metrics.arch == TargetArch_amd64 - ? make_string_c("ucrt\\x64") - : make_string_c("ucrt\\x86"); + ? str_lit("ucrt\\x64") + : str_lit("ucrt\\x86"); isize lo = {0}; isize hi = {0};