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
bb6d8858
Commit
bb6d8858
authored
Aug 30, 2021
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Style OCD: () around return values
parent
a0ad961a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
cache_vrt.c
bin/varnishd/cache/cache_vrt.c
+1
-1
cache_http2_proto.c
bin/varnishd/http2/cache_http2_proto.c
+1
-1
vbm.h
include/vbm.h
+1
-1
vcc_acl.c
lib/libvcc/vcc_acl.c
+1
-1
No files found.
bin/varnishd/cache/cache_vrt.c
View file @
bb6d8858
...
...
@@ -203,7 +203,7 @@ VPI_acl_table(VRT_CTX, VCL_IP p, unsigned n, unsigned m, const uint8_t *tbl,
sz
/=
m
;
if
(
str
!=
NULL
)
VPI_acl_log
(
ctx
,
str
[
sz
]);
return
*
ptr
;
return
(
*
ptr
)
;
}
if
(
str
!=
NULL
)
VPI_acl_log
(
ctx
,
fin
);
...
...
bin/varnishd/http2/cache_http2_proto.c
View file @
bb6d8858
...
...
@@ -75,7 +75,7 @@ h2_framename(enum h2frame h2f)
{
switch
(
h2f
)
{
#define H2_FRAME(l,u,t,f,...) case H2F_##u: return
#u
;
#define H2_FRAME(l,u,t,f,...) case H2F_##u: return
(#u)
;
#include "tbl/h2_frames.h"
default:
return
(
NULL
);
...
...
include/vbm.h
View file @
bb6d8858
...
...
@@ -102,7 +102,7 @@ vbit_init(void *p, size_t sz)
struct
vbitmap
*
vb
;
if
(
sz
<
sizeof
(
*
vb
))
return
NULL
;
return
(
NULL
)
;
memset
(
p
,
0
,
sz
);
vb
=
p
;
...
...
lib/libvcc/vcc_acl.c
View file @
bb6d8858
...
...
@@ -527,7 +527,7 @@ vcc_acl_emit_tables(const struct vcc *tl, unsigned n, const char *name)
}
Fh
(
tl
,
0
,
"};
\n
"
);
}
return
(
rv
);
return
(
rv
);
}
/*********************************************************************
...
...
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