Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
not-fl3 committed Oct 20, 2024
1 parent fdd551e commit a06a6df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/native/linux_x11/libx11_ex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ impl LibX11 {
let b = pixels[2] as u32;
let a = pixels[3] as u32;

*target.next().unwrap() = ((r << 16) | (g << 8) | (b << 0) | (a << 24)) as usize;
*target.next().unwrap() =
((r << 16) | (g << 8) | (b << 0) | (a << 24)) as usize;
}
}
}
Expand Down

0 comments on commit a06a6df

Please sign in to comment.