diff --git a/src/detections/utils.rs b/src/detections/utils.rs index 02440dc6..b50a0db9 100644 --- a/src/detections/utils.rs +++ b/src/detections/utils.rs @@ -28,7 +28,7 @@ pub fn check_command( for entry in rdr.records() { if let Ok(_data) = entry { - if (commandline == &_data[0]) { + if commandline == &_data[0] { return; } }