We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f4db8a + b8129e0 commit d3303c2Copy full SHA for d3303c2
nix-test/build.rs
@@ -13,7 +13,7 @@ pub fn main() {
13
"UNKNOWN"
14
};
15
16
- gcc::Config::new()
+ gcc::Build::new()
17
.file("src/const.c")
18
.file("src/sizes.c")
19
.define(os, None)
test/sys/test_aio.rs
@@ -13,7 +13,7 @@ use std::{thread, time};
use tempfile::tempfile;
// Helper that polls an AioCb for completion or error
-fn poll_aio(mut aiocb: &mut AioCb) -> Result<()> {
+fn poll_aio(aiocb: &mut AioCb) -> Result<()> {
loop {
let err = aiocb.error();
if err != Err(Error::from(Errno::EINPROGRESS)) { return err; };
0 commit comments