Skip to content

Commit

Permalink
Fix error due to profiles not being mut
Browse files Browse the repository at this point in the history
  • Loading branch information
MEhrn00 committed Feb 2, 2024
1 parent 93e5bb3 commit 7a29fe4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ impl Profile {
/// * `uuid` - Initial configured UUID
pub fn new(uuid: String) -> Self {
// Create a list of configured profiles
let profiles: Vec<Box<dyn C2Profile>> = Vec::new();
let mut profiles: Vec<Box<dyn C2Profile>> = Vec::new();

// HTTP profile specified
#[cfg(http)]
Expand Down

0 comments on commit 7a29fe4

Please sign in to comment.