mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 03:00:11 +01:00
nak: drop empty string from eprintln!()
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38807>
This commit is contained in:
parent
91496f6d68
commit
f7a31b7d48
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue