Commit c2a33829 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

Constify

parent 07123cfd
......@@ -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 *);
......
......@@ -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);
......
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