nak: drop empty string from eprintln!()

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38807>
This commit is contained in:
Eric Engestrom 2025-10-04 16:11:54 +02:00
parent 91496f6d68
commit f7a31b7d48

View file

@ -393,12 +393,12 @@ fn eprint_hex(label: &str, data: &[u32]) {
eprint!("{}:", label); eprint!("{}:", label);
for i in 0..data.len() { for i in 0..data.len() {
if (i % 8) == 0 { if (i % 8) == 0 {
eprintln!(""); eprintln!();
eprint!(" "); eprint!(" ");
} }
eprint!(" {:08x}", data[i]); eprint!(" {:08x}", data[i]);
} }
eprintln!(""); eprintln!();
} }
macro_rules! pass { macro_rules! pass {