mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 07:20:10 +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);
|
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 {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue