make all ld printlns happen in case of verbose = true and apply cargo fmt

It seams that stdout of ld.so is not that much of an issue but actually
it unfortunately is. The major problem here is that sometimes programs
generate header files in stdout (./getmy_custom_headers > header.h) and
we need to keep that cleen. and this is very very popular in gcc.
This commit is contained in:
oddcoder
2020-08-12 14:54:07 +02:00
parent 7b29f6eb27
commit ab92ff9d41
6 changed files with 11 additions and 11 deletions
-1
View File
@@ -690,7 +690,6 @@ unsafe fn inner_printf<W: Write>(w: W, format: *const c_char, mut ap: VaList) ->
_ => None,
};
let index = arg.index.map(|i| i - 1).unwrap_or_else(|| {
if fmtkind == FmtKind::Percent {
0