nak: drop empty string from eprintln!()
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38807>
This commit is contained in:
@@ -393,12 +393,12 @@ fn eprint_hex(label: &str, data: &[u32]) {
|
||||
eprint!("{}:", label);
|
||||
for i in 0..data.len() {
|
||||
if (i % 8) == 0 {
|
||||
eprintln!("");
|
||||
eprintln!();
|
||||
eprint!(" ");
|
||||
}
|
||||
eprint!(" {:08x}", data[i]);
|
||||
}
|
||||
eprintln!("");
|
||||
eprintln!();
|
||||
}
|
||||
|
||||
macro_rules! pass {
|
||||
|
||||
Reference in New Issue
Block a user