Fix: made suggested change

This commit is contained in:
linux1 2021-08-23 17:56:04 -04:00
parent 05cd587726
commit a9f623707b

View file

@ -101,6 +101,6 @@ impl S390xInlineAsmReg {
_arch: InlineAsmArch,
_modifier: Option<char>,
) -> fmt::Result {
out.write_str(&format!("%{}", self.name()))
write!(out, "%{}", self.name())
}
}