Skip to content

Commit 15efbc6

Browse files
committed
Write two newlines intentionally
1 parent 4d9fa6f commit 15efbc6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

compiler/rustc_interface/src/passes.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -564,8 +564,7 @@ fn write_out_deps(tcx: TyCtxt<'_>, outputs: &OutputFilenames, out_filenames: &[P
564564
write!(file, " checksum:{checksum_hash} file_len:{file_len}")
565565
})?;
566566
}
567-
writeln!(file)?;
568-
writeln!(file)?;
567+
write!(file, "\n\n")?;
569568
}
570569

571570
// Emit a fake target for each input file to the compilation. This

0 commit comments

Comments
 (0)