Skip to content

Commit

Permalink
Fix inequality in "stale mtime" log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
smheidrich committed Oct 23, 2022
1 parent 071eeaf commit f3fd53d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cargo/core/compiler/fingerprint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1194,7 +1194,7 @@ impl StaleItem {
} => {
info!("stale: changed {:?}", stale);
info!(" (vs) {:?}", reference);
info!(" {:?} != {:?}", reference_mtime, stale_mtime);
info!(" {:?} < {:?}", reference_mtime, stale_mtime);
}
StaleItem::ChangedEnv {
var,
Expand Down

0 comments on commit f3fd53d

Please sign in to comment.