]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: fix all duplicated semicolons
authorWilliam Dauchy <w.dauchy@criteo.com>
Fri, 7 Aug 2020 20:19:23 +0000 (22:19 +0200)
committerWilliam Lallemand <wlallemand@haproxy.org>
Mon, 10 Aug 2020 06:49:38 +0000 (08:49 +0200)
trivial commit, does not change the code behaviour

Signed-off-by: William Dauchy <w.dauchy@criteo.com>
src/mux_fcgi.c
src/mux_h2.c
src/ring.c

index 875049884da06bfcec1e54b729fcb615ac222931..ab9ddf095ddaca2aceef02411af27b552353beeb 100644 (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);
 
index 44955ba8fccfca332dcca4f0fbd5a8a4a836708d..bfa65bd24b502a669e6d77f6f1460074f356acb6 100644 (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);
 
index 7c7d58edc07c31f3d6133a9085fab20bd44c59e8..2ee6c10b938fc6e8665edf275c469f44b9eeef64 100644 (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 */