mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-03-05 10:58:14 +00:00
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:
parent
a598b500b4
commit
477757c66b
@ -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)
|
static void fcgi_release(struct fcgi_conn *fconn)
|
||||||
{
|
{
|
||||||
struct connection *conn = NULL;;
|
struct connection *conn = NULL;
|
||||||
|
|
||||||
TRACE_POINT(FCGI_EV_FCONN_END);
|
TRACE_POINT(FCGI_EV_FCONN_END);
|
||||||
|
|
||||||
|
@ -926,7 +926,7 @@ static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
|
|||||||
*/
|
*/
|
||||||
static void h2_release(struct h2c *h2c)
|
static void h2_release(struct h2c *h2c)
|
||||||
{
|
{
|
||||||
struct connection *conn = NULL;;
|
struct connection *conn = NULL;
|
||||||
|
|
||||||
TRACE_ENTER(H2_EV_H2C_END);
|
TRACE_ENTER(H2_EV_H2C_END);
|
||||||
|
|
||||||
|
@ -186,7 +186,7 @@ ssize_t ring_write(struct ring *ring, size_t maxlen, const struct ist pfx[], siz
|
|||||||
totlen += len;
|
totlen += len;
|
||||||
}
|
}
|
||||||
|
|
||||||
*b_tail(buf) = 0; buf->data++;; // new read counter
|
*b_tail(buf) = 0; buf->data++; // new read counter
|
||||||
sent = lenlen + totlen + 1;
|
sent = lenlen + totlen + 1;
|
||||||
|
|
||||||
/* notify potential readers */
|
/* notify potential readers */
|
||||||
|
Loading…
Reference in New Issue
Block a user