From d8dcc8c24d52ca34f9aaf9de9fbf857f305fecbb Mon Sep 17 00:00:00 2001 From: GNU Libc Maintainers Date: Tue, 4 Aug 2020 16:02:38 +0100 Subject: [PATCH] local-madvise_warn Do not warn about madvise not being implemented. It does not have any real semantic anyway, and that brings some -Werror FTBFS. Gbp-Pq: Topic hurd-i386 Gbp-Pq: Name local-madvise_warn.diff --- misc/madvise.c | 2 +- posix/posix_madvise.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/madvise.c b/misc/madvise.c index 288d6afb6..8cf3faaf1 100644 --- a/misc/madvise.c +++ b/misc/madvise.c @@ -32,4 +32,4 @@ __madvise (void *addr, size_t len, int advice) libc_hidden_def (__madvise) weak_alias (__madvise, madvise) -stub_warning (madvise) +/* stub_warning (madvise) */ diff --git a/posix/posix_madvise.c b/posix/posix_madvise.c index a50339815..f0c88f2e4 100644 --- a/posix/posix_madvise.c +++ b/posix/posix_madvise.c @@ -27,4 +27,4 @@ posix_madvise (void *addr, size_t len, int advice) { return ENOSYS; } -stub_warning (posix_madvise) +/* stub_warning (posix_madvise) */ -- 2.30.2