This commit is contained in:
xqtc161 2024-06-22 21:37:59 +02:00
parent 8537061509
commit 2737864f67
3 changed files with 3 additions and 3 deletions

4
flake.lock generated
View file

@ -81,11 +81,11 @@
"locked": {
"lastModified": 1,
"narHash": "sha256-8wkkYGr1dPSnX9oVMX8D6dTOROXKOYpBTKfriA0sEBI=",
"path": "/nix/store/ihnzfdiy5sdan246vw4qrg31r8b2a919-source/flake.systems.nix",
"path": "/nix/store/di47yxd3q4pd39qi335faam16fwacrbx-source/flake.systems.nix",
"type": "path"
},
"original": {
"path": "/nix/store/ihnzfdiy5sdan246vw4qrg31r8b2a919-source/flake.systems.nix",
"path": "/nix/store/di47yxd3q4pd39qi335faam16fwacrbx-source/flake.systems.nix",
"type": "path"
}
},

View file

@ -18,6 +18,7 @@ pub struct Pool {
pub struct Page {
/// Pointer to next page
prev: Option<NonNull<Page>>,
next: Option<NonNull<Page>>,
}

View file

@ -43,4 +43,3 @@ macro_rules! println {
print!("{}\n", format_args!($($arg)*));
}}
}