cargo clippy
This commit is contained in:
parent
7df3daba70
commit
a33372f61d
2 changed files with 3 additions and 1 deletions
|
|
@ -1,3 +1,5 @@
|
|||
#![deny(clippy::all)]
|
||||
|
||||
mod clientside;
|
||||
mod data_device;
|
||||
mod server;
|
||||
|
|
|
|||
|
|
@ -547,7 +547,7 @@ impl TestFixture {
|
|||
|
||||
let serial = self.surface_serial;
|
||||
let serial_lo = (serial & 0xFF) as u32;
|
||||
let serial_hi = (serial >> 8 & 0xFF) as u32;
|
||||
let serial_hi = ((serial >> 8) & 0xFF) as u32;
|
||||
self.surface_serial += 1;
|
||||
|
||||
xwl.send_request(Req::<XwaylandSurfaceV1>::SetSerial {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue