Skip to content

Commit

Permalink
Fixed typo in thread spawn
Browse files Browse the repository at this point in the history
  • Loading branch information
MEhrn00 committed Mar 24, 2022
1 parent d8ed11a commit 284a80a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Payload_Type/tetanus/agent_code/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,5 @@ fn run_beacon() -> Result<(), Box<dyn Error>> {
#[ctor::ctor]
#[cfg(crate_type = "cdylib")]
fn run() {
std::thread::spgwn(|| real_main().unwrap());
std::thread::spawn(|| real_main().unwrap());
}

0 comments on commit 284a80a

Please sign in to comment.