Skip to content

Commit 8a33917

Browse files
committed
fix build error in libc-test/build.rs
1 parent 7769959 commit 8a33917

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libc-test/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3341,7 +3341,7 @@ fn which_vxworks() -> Option<(u32, u32)> {
33413341
let major: u32 = pieces.next().and_then(|x| x.parse().ok()).unwrap_or(0);
33423342
let minor: u32 = pieces.next().and_then(|x| x.parse().ok()).unwrap_or(0);
33433343

3344-
Some(major, minor)
3344+
Some((major, minor))
33453345
}
33463346

33473347
fn test_vxworks(target: &str) {

0 commit comments

Comments
 (0)