Fix swapped host/target args

This commit is contained in:
Kornel 2025-08-26 13:14:42 +01:00 committed by Kornel
parent 79338a99ea
commit 21f2885be3
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ impl Features {
}
impl Env {
fn from_env(target: &str, host: &str, is_fips_like: bool) -> Self {
fn from_env(host: &str, target: &str, is_fips_like: bool) -> Self {
const NORMAL_PREFIX: &str = "BORING_BSSL";
const FIPS_PREFIX: &str = "BORING_BSSL_FIPS";