diff options
Diffstat (limited to 'cli/bench/main.rs')
-rw-r--r-- | cli/bench/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/bench/main.rs b/cli/bench/main.rs index ac1798b02..02c775e8f 100644 --- a/cli/bench/main.rs +++ b/cli/bench/main.rs @@ -502,7 +502,7 @@ async fn main() -> Result<()> { let mut syscall_count = HashMap::<String, i64>::new(); for (name, args, expected_exit_code) in EXEC_TIME_BENCHMARKS { - let mut file = secure_tempfile::NamedTempFile::new()?; + let mut file = tempfile::NamedTempFile::new()?; let exit_status = Command::new("strace") .args([ |