nak: Add a space to the end of vec and split arg lists

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24998>
This commit is contained in:
Faith Ekstrand 2023-04-10 17:23:26 -05:00 committed by Marge Bot
parent 8004416e38
commit 3b39778fdd

View file

@ -1387,7 +1387,7 @@ impl fmt::Display for OpVec {
for src in &self.srcs[1..] {
write!(f, " {}", src)?;
}
write!(f, "}}")
write!(f, " }}")
}
}
@ -1414,7 +1414,7 @@ impl fmt::Display for OpSplit {
for dst in &self.dsts[1..] {
write!(f, " {}", dst)?;
}
write!(f, "}} {}", self.src)
write!(f, " }} {}", self.src)
}
}