Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit 7ea1475

Browse files
authored
Fix build
1 parent c775c8a commit 7ea1475

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/agent/onefuzz-agent/src/validations.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ async fn get_logs(config: ValidationConfig) -> Result<()> {
110110
None::<&PathBuf>,
111111
MachineIdentity {
112112
machine_id: Uuid::nil(),
113-
machine_name: "".to_string(),
113+
machine_name: String::new(),
114114
scaleset_name: None,
115115
},
116116
);
117-
let cmd = libfuzzer.build_std_command(None, None, None).await?;
117+
let cmd = libfuzzer.build_std_command(None, None, None, None, None)?;
118118
print_logs(cmd)?;
119119
Ok(())
120120
}

0 commit comments

Comments
 (0)