From 426f91bd251ebfc6cca7a79bba1ba4f7913fb375 Mon Sep 17 00:00:00 2001 From: gnzlbg <gonzalobg88@gmail.com> Date: Tue, 14 May 2019 13:49:31 +0200 Subject: [PATCH] Fix typo in Linux checking --- libc-test/build.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libc-test/build.rs b/libc-test/build.rs index d28fbbc5..68013617 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -2671,7 +2671,8 @@ fn test_linux(target: &str) { "getrlimit" | "getrlimit64" | // non-int in 1st arg "setrlimit" | "setrlimit64" | // non-int in 1st arg - "prlimit" | "prlimit64" | // non-int in 2nd arg + "prlimit" | "prlimit64" // non-int in 2nd arg + => true, // int vs uint. Sorry musl, your prototype declarations are "correct" in the sense that // they match the interface defined by Linux verbatim, but they conflict with other -- GitLab