Skip to content

Commit

Permalink
Fixed missing ? in src/pc/mod.rs for windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
MEhrn00 committed Mar 25, 2022
1 parent 284a80a commit 91c4c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Payload_Type/tetanus/agent_code/src/ps/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub fn get_process_list(task: &AgentTask) -> Result<serde_json::Value, Box<dyn E
"task_id": task.id,
"status": "success",
"completed": true,
"user_output": serde_json::to_string(&output),
"user_output": serde_json::to_string(&output)?,
"processes": serde_json::to_value(listing)?,
}))
}
Expand Down

0 comments on commit 91c4c97

Please sign in to comment.