CLEANUP: fix all duplicated semicolons

trivial commit, does not change the code behaviour

Signed-off-by: William Dauchy <w.dauchy@criteo.com>
This commit is contained in:
William Dauchy 2020-08-07 22:19:23 +02:00 committed by William Lallemand
parent a598b500b4
commit 477757c66b
3 changed files with 3 additions and 3 deletions

View File

@ -825,7 +825,7 @@ static inline struct fcgi_strm *fcgi_conn_st_by_id(struct fcgi_conn *fconn, int
*/
static void fcgi_release(struct fcgi_conn *fconn)
{
struct connection *conn = NULL;;
struct connection *conn = NULL;
TRACE_POINT(FCGI_EV_FCONN_END);

View File

@ -926,7 +926,7 @@ static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
*/
static void h2_release(struct h2c *h2c)
{
struct connection *conn = NULL;;
struct connection *conn = NULL;
TRACE_ENTER(H2_EV_H2C_END);

View File

@ -186,7 +186,7 @@ ssize_t ring_write(struct ring *ring, size_t maxlen, const struct ist pfx[], siz
totlen += len;
}
*b_tail(buf) = 0; buf->data++;; // new read counter
*b_tail(buf) = 0; buf->data++; // new read counter
sent = lenlen + totlen + 1;
/* notify potential readers */