From fc1de420fe4e9d5256243a3ca9ba7f08b762e529 Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sun, 24 Nov 2024 20:52:37 +1100 Subject: [PATCH] Fix fmt --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 258919d8..8f80332d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1958,7 +1958,7 @@ impl Build { // This should be acceptable because other messages from rustc are in English anyway, // and may also be desirable to improve searchability of the linker diagnostics. if matches!(cmd.family, ToolFamily::Msvc { clang_cl: false }) { - cmd.env.push(("VSLANG".into(), "1033".into())); + cmd.env.push(("VSLANG".into(), "1033".into())); } else { cmd.env.push(("LC_ALL".into(), "C".into())); }