Skip to content

Commit

Permalink
even more variable renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
riesentoaster committed Nov 21, 2024
1 parent 0dd380e commit b404d67
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions libafl/src/events/llmp/restarting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -528,9 +528,7 @@ where
broker_things(broker, self.remote_broker_addr)?;
unreachable!("The broker may never return normally, only on errors or when shutting down.");
}
ManagerKind::Client {
client_description: client_id,
} => {
ManagerKind::Client { client_description } => {
// We are a client
let mgr = LlmpEventManager::builder()
.always_interesting(self.always_interesting)
Expand All @@ -542,7 +540,7 @@ where
self.time_ref.clone(),
)?;

(mgr, Some(client_id.core_id()))
(mgr, Some(client_description.core_id()))
}
};

Expand Down

0 comments on commit b404d67

Please sign in to comment.