no need to comma delimit this, it's already space delimited

This commit is contained in:
Jacob Kiesel 2024-09-29 00:06:40 -06:00
parent 6708d56fd2
commit 6fd9ef606f

View File

@ -561,7 +561,7 @@ fn write_out_deps(tcx: TyCtxt<'_>, outputs: &OutputFilenames, out_filenames: &[P
hash_algo.map(|hash_algo| (path, file_len, hash_algo))
})
.try_for_each(|(_path, file_len, checksum_hash)| {
write!(file, "checksum:{checksum_hash} file_len:{file_len}, ")
write!(file, " checksum:{checksum_hash} file_len:{file_len}")
})?;
}
writeln!(file)?;