Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
3690420a
Commit
3690420a
authored
Jul 19, 2021
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
One more Flexelint silencing
parent
4a923840
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
vmod_blob.c
vmod/vmod_blob.c
+4
-1
No files found.
vmod/vmod_blob.c
View file @
3690420a
...
...
@@ -128,7 +128,10 @@ parse_encoding(VCL_ENUM e)
static
enum
case_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"
WRONG
(
"illegal case enum"
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment