Prepare for 0.9.0 release #663
GitHub Actions / clippy
succeeded
Jan 31, 2025 in 0s
clippy
2 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 2 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.84.0 (9fc6b4312 2025-01-07)
- cargo 1.84.0 (66221abde 2024-11-19)
- clippy 0.1.84 (9fc6b43126 2025-01-07)
Annotations
Check warning on line 374 in src/device/sound.rs
github-actions / clippy
this function has too many arguments (8/7)
warning: this function has too many arguments (8/7)
--> src/device/sound.rs:365:5
|
365 | / pub fn pcm_set_params(
366 | | &mut self,
367 | | stream_id: u32,
368 | | buffer_bytes: u32,
... |
373 | | rate: PcmRate,
374 | | ) -> Result {
| |_______________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
Check warning on line 264 in src/device/gpu.rs
github-actions / clippy
this function has too many arguments (8/7)
warning: this function has too many arguments (8/7)
--> src/device/gpu.rs:255:5
|
255 | / fn update_cursor(
256 | | &mut self,
257 | | resource_id: u32,
258 | | scanout_id: u32,
... |
263 | | is_move: bool,
264 | | ) -> Result {
| |_______________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
= note: `#[warn(clippy::too_many_arguments)]` on by default
Loading