Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Lichtso committed May 17, 2024
1 parent e5a4237 commit 1e6ec94
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion program-runtime/src/loaded_programs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,10 @@ impl<FG: ForkGraph> LoadedPrograms<FG> {
} else {
// Something is wrong, I can feel it ...
let existing = existing.clone();
error!("ProgramCache::assign_program() failed key={:?} existing={:?} entry={:?}", key, slot_versions, entry);
error!(
"ProgramCache::assign_program() failed key={:?} existing={:?} entry={:?}",
key, slot_versions, entry
);
debug_assert!(false, "Unexpected replacement of an entry");
self.stats.replacements.fetch_add(1, Ordering::Relaxed);
(true, existing)
Expand Down

0 comments on commit 1e6ec94

Please sign in to comment.