Commit 3690420a authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

One more Flexelint silencing

parent 4a923840
...@@ -128,7 +128,10 @@ parse_encoding(VCL_ENUM e) ...@@ -128,7 +128,10 @@ parse_encoding(VCL_ENUM e)
static enum case_e static enum case_e
parse_case(VCL_ENUM e) parse_case(VCL_ENUM e)
{ {
#define VMODENUM(n) if (e == VENUM(n)) return (n); #define VMODENUM(n) \
do { \
if (e == VENUM(n)) return (n); \
} while (0);
#include "vmod_blob_tbl_case.h" #include "vmod_blob_tbl_case.h"
WRONG("illegal case enum"); WRONG("illegal case enum");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment