Commit 6bc3cb87 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Uneeded returns are unneeded

parent cdb2edf7
......@@ -340,7 +340,6 @@ ObjTrimStore(struct worker *wrk, struct objcore *oc)
if (om->objtrimstore != NULL)
om->objtrimstore(wrk, oc);
return;
}
/*====================================================================
......
......@@ -259,8 +259,7 @@ http1_abort(struct req *req, unsigned status)
{
AN(req->doclose);
assert(status >= 400);
(void) http1_minimal_response(req, status);
return;
(void)http1_minimal_response(req, status);
}
static int
......
......@@ -411,7 +411,6 @@ shardcfg_backend_add(struct backend_reconfig *re,
re->shardd->n_backend++;
shardcfg_backend_copyin(&bb[i], b);
return;
}
static void
......
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