summaryrefslogtreecommitdiff
path: root/src/server.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2021-10-05 19:12:23 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2021-10-05 19:12:23 -0400
commit575665ad88c3226abdcfd8b372fcf8b5fc18259b (patch)
treee66e081e7a7e0e5f91603f82a25f10a6813cd1b8 /src/server.c
parent47b10991fb55b2041b81b521e67c22cd9d128820 (diff)
downloadlighttpd-git-575665ad88c3226abdcfd8b372fcf8b5fc18259b.tar.gz
[multiple] __attribute_nonnull__ now takes params
define __attribute_nonnull__(params) with params to match recent changes in glibc development (targetting glibc 2.35 in Feb 2022) x-ref: new __attribute_nonnull__(params) conflicts with third-party https://sourceware.org/bugzilla/show_bug.cgi?id=28425
Diffstat (limited to 'src/server.c')
-rw-r--r--src/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.c b/src/server.c
index 3eed0aa0..682fef49 100644
--- a/src/server.c
+++ b/src/server.c
@@ -1910,7 +1910,7 @@ static void server_handle_sigchld (server * const srv) {
}
__attribute_hot__
-__attribute_nonnull__
+__attribute_nonnull__()
static void server_run_con_queue (connection * const restrict joblist, const connection * const sentinel) {
for (connection *con = joblist, *jqnext; con != sentinel; con = jqnext) {
jqnext = con->jqnext;