Skip to content

Commit

Permalink
Constify
Browse files Browse the repository at this point in the history
  • Loading branch information
Dridi committed Aug 25, 2018
1 parent 07123cf commit c2a3382
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/varnishd/cache/cache_varnishd.h
Expand Up @@ -388,7 +388,7 @@ void VCL_Poll(void);
void VCL_Ref(struct vcl *);
void VCL_Refresh(struct vcl **);
void VCL_Rel(struct vcl **);
void VCL_Onboard(struct req *, struct busyobj *);
void VCL_Onboard(const struct req *, const struct busyobj *);
const char *VCL_Return_Name(unsigned);
const char *VCL_Method_Name(unsigned);
void VCL_Bo2Ctx(struct vrt_ctx *, struct busyobj *);
Expand Down
2 changes: 1 addition & 1 deletion bin/varnishd/cache/cache_vcl_vrt.c
Expand Up @@ -77,7 +77,7 @@ VCL_Method_Name(unsigned m)
/*--------------------------------------------------------------------*/

void
VCL_Onboard(struct req *req, struct busyobj *bo)
VCL_Onboard(const struct req *req, const struct busyobj *bo)
{

CHECK_OBJ_ORNULL(req, REQ_MAGIC);
Expand Down

0 comments on commit c2a3382

Please sign in to comment.