From 61a3df6173207298efc7dc1632ebada22c7c60f4 Mon Sep 17 00:00:00 2001 From: Jeff Biseda Date: Thu, 23 Sep 2021 01:48:58 -0700 Subject: [PATCH] fix build break from 20099 (#20131) --- sys-tuner/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-tuner/src/main.rs b/sys-tuner/src/main.rs index ac61363df..36b85539a 100644 --- a/sys-tuner/src/main.rs +++ b/sys-tuner/src/main.rs @@ -1,4 +1,4 @@ -#[cfg(target_os = "linux")] +#[cfg(not(target_family = "windows"))] use clap::{crate_description, crate_name, value_t_or_exit, App, Arg}; use log::*;