Skip to content

Commit

Permalink
fixes multi-line string whitespace in librustc_incremental/persist/fs.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
pweaver committed Oct 3, 2016
1 parent 5e3aaab commit 7cf90d0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/librustc_incremental/persist/fs.rs
Expand Up @@ -240,10 +240,12 @@ pub fn prepare_session_directory(tcx: TyCtxt) -> Result<bool, ()> {
source_directory.display());

if !allows_links {
tcx.sess.warn(&format!("Hard linking files in the incremental compilation
cache failed. Copying files instead. Consider moving the cache directory to a
file system which supports hard linking in session dir `{}`"
, session_dir.display())
tcx.sess.warn(&format!("Hard linking files in the incremental \
compilation cache failed. Copying files \
instead. Consider moving the cache \
directory to a file system which supports \
hard linking in session dir `{}`",
session_dir.display())
);
}

Expand Down

0 comments on commit 7cf90d0

Please sign in to comment.