summaryrefslogtreecommitdiff
path: root/src/trace.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2023-10-15 21:10:24 +0200
committerSanto Cariotti <santo@dcariotti.me>2023-10-15 21:10:24 +0200
commit6c341cddabcff6e11e1d1357952ec62d6734e177 (patch)
treeeb36e68c77b1cc68690cce7c30a6d0ba54df883f /src/trace.rs
parent073d565b303bde5d3a79f5d5c426d6c2822912d4 (diff)
Fix clippy
Diffstat (limited to 'src/trace.rs')
-rw-r--r--src/trace.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trace.rs b/src/trace.rs
index b2880d5..e576320 100644
--- a/src/trace.rs
+++ b/src/trace.rs
@@ -9,7 +9,7 @@ use nix::{
use std::{fs::File, io::Write, os::unix::process::CommandExt, process::Command};
/// Exec the `command` value tracing it with `ptrace` lib
-pub fn exec(command: &String) -> anyhow::Result<()> {
+pub fn exec(command: &str) -> anyhow::Result<()> {
let params: Vec<&str> = command.split(' ').collect();
let mut command = Command::new(params[0]);