Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
None is default, so just use default
Browse files Browse the repository at this point in the history
Xaeroxe committed Oct 8, 2024
1 parent 130b715 commit e243884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cargo/core/compiler/fingerprint/mod.rs
Original file line number Diff line number Diff line change
@@ -2389,7 +2389,7 @@ pub fn parse_rustc_dep_info(rustc_dep_info: &Path) -> CargoResult<RustcDepInfo>
internal("malformed dep-info format, trailing \\".to_string())
})?);
}
ret.files.entry(file.into()).or_insert(None);
ret.files.entry(file.into()).or_default();
}
} else if let Some(rest) = line.strip_prefix("# checksum:") {
let mut parts = rest.splitn(3, ' ');

0 comments on commit e243884

Please sign in to comment.