commit | 15c84280601a55e4713feff5e2d1337d564a4ef3 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sat Feb 04 10:49:01 2023 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Sat Feb 04 10:49:01 2023 +0100 |
tree | 72f5da4301c698e00800a2ec2bb9424b6f7722b0 | |
parent | f2f08f88ef58bdf8b85e73596460af83825237cd [diff] |
BUILD: thread: fix build warnings with older gcc compilers The "{ 0 }" form to initialize an empty structure triggers build warnings on gcc 4.8, let's use the more common "{ }" instead.
diff --git a/src/thread.c b/src/thread.c index 94d150d..489c841 100644 --- a/src/thread.c +++ b/src/thread.c
@@ -1234,7 +1234,7 @@ */ int thread_resolve_group_mask(struct thread_set *ts, int defgrp, char **err) { - struct thread_set new_ts = { 0 }; + struct thread_set new_ts = { }; ulong mask, imask; uint g;