Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Minor compilation fix
  • Loading branch information
kornelski committed Sep 2, 2017
commit 2354089ece7d03f997caf8a9f6ad99d235c8dacb
2 changes: 1 addition & 1 deletion src/librustc_trans/back/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ fn print_native_static_libs(sess: &Session, all_native_libs: &[NativeLibrary]) {
against this static library. The order and any duplication \
can be significant on some platforms.");
// Prefix for greppability
sess.note_without_error(format!("native-static-libs: {}", &lib_args.join(" ")));
sess.note_without_error(&format!("native-static-libs: {}", &lib_args.join(" ")));
}
}

Expand Down