Skip to content

Commit 2354089

Browse files
committed
Minor compilation fix
1 parent 2920658 commit 2354089

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_trans/back/link.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ fn print_native_static_libs(sess: &Session, all_native_libs: &[NativeLibrary]) {
699699
against this static library. The order and any duplication \
700700
can be significant on some platforms.");
701701
// Prefix for greppability
702-
sess.note_without_error(format!("native-static-libs: {}", &lib_args.join(" ")));
702+
sess.note_without_error(&format!("native-static-libs: {}", &lib_args.join(" ")));
703703
}
704704
}
705705

0 commit comments

Comments
 (0)