Fix a silly mistake in a `format!` call.

This commit is contained in:
Nicholas Nethercote 2020-03-03 17:35:40 +11:00
Родитель 74b4f4e3de
Коммит d5591e4831
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -608,7 +608,7 @@ impl Fixer {
// same as the original line, but with slightly different
// formatting.
format!(
"{}{} ({} +0x{:x}{})",
"{}{} ({} +0x{:x}){}",
before, in_func_name, in_file_name, address, after
)
}