commit | 5a001a0e4d0ee2f877a5907045b11db5bc246170 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Feb 28 17:57:19 2022 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Feb 28 17:59:28 2022 +0100 |
tree | 38eabb2b64b17dae3f1415d535fb020c9d658b8e | |
parent | 8bc1759f609ef4e34d3b303b3c72517b4f4b2f4a [diff] |
BUILD: debug: fix build warning on older compilers around DEBUG_STRICT_ACTION The new macro was introduced with commit 86bcc5308 ("DEBUG: implement 4 levels of choices between warn and crash.") but some older compilers can complain that we test the value when the macro is not defined despite having already been checked in a previous #if directive. Let's just repeat the test for the definition.