diff options
| author | Fuwn <[email protected]> | 2022-01-03 12:58:55 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-01-03 12:58:55 -0800 |
| commit | c1109b4a5694d7a9b8b93c11140ce968bf074816 (patch) | |
| tree | fe8ef37bc60d37dbcb5e41a1b29c5d4dcc39f100 /crates/windows-kernel-rs/src/lib.rs | |
| parent | fix(windows-kernal-build): fix unnecessary lazy evaluation (diff) | |
| download | driver-c1109b4a5694d7a9b8b93c11140ce968bf074816.tar.xz driver-c1109b4a5694d7a9b8b93c11140ce968bf074816.zip | |
fix(window-kernel-rs): mark unsafe functions
Diffstat (limited to 'crates/windows-kernel-rs/src/lib.rs')
| -rw-r--r-- | crates/windows-kernel-rs/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/windows-kernel-rs/src/lib.rs b/crates/windows-kernel-rs/src/lib.rs index a0ddf9a..f952ce6 100644 --- a/crates/windows-kernel-rs/src/lib.rs +++ b/crates/windows-kernel-rs/src/lib.rs @@ -1,5 +1,6 @@ #![no_std] #![feature(alloc_error_handler)] +#![allow(clippy::too_many_arguments)] extern crate alloc; |