Commit 4a923840 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Silence FlexeLint

parent 0012ea92
......@@ -117,7 +117,10 @@ static char empty[1] = { '\0' };
static enum encoding
parse_encoding(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_encodings.h"
WRONG("illegal encoding 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