We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7769959 commit 8a33917Copy full SHA for 8a33917
1 file changed
libc-test/build.rs
@@ -3341,7 +3341,7 @@ fn which_vxworks() -> Option<(u32, u32)> {
3341
let major: u32 = pieces.next().and_then(|x| x.parse().ok()).unwrap_or(0);
3342
let minor: u32 = pieces.next().and_then(|x| x.parse().ok()).unwrap_or(0);
3343
3344
- Some(major, minor)
+ Some((major, minor))
3345
}
3346
3347
fn test_vxworks(target: &str) {
0 commit comments