You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: this is a decimal constant
--> src/connection.rs:108:60
|
108 | DeviceType::ValueA => (0x0505, 0xa4a6, 0x81, 0x1),
| ^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#zero_prefixed_literal
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
|
108 | DeviceType::ValueA => (0x0505, 0xa4a6, 0x81, x1),
| ^^
help: if you mean to use an octal constant, use `0o`
|
108 | DeviceType::ValueA => (0x0505, 0xa4a6, 0x81, 0ox1),
| ^^^^
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: