From: Jaroslav Kysela Date: Mon, 9 Oct 2017 07:24:56 +0000 (+0200) Subject: htsbuf: remove double ;; in htsbuf_append_and_escape_url() X-Git-Tag: v4.2.4~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b51d407bca5a613fe8a2b3191c90abdb216e275b;p=thirdparty%2Ftvheadend.git htsbuf: remove double ;; in htsbuf_append_and_escape_url() --- diff --git a/src/htsbuf.c b/src/htsbuf.c index 22f029a6f..c9193e92f 100644 --- a/src/htsbuf.c +++ b/src/htsbuf.c @@ -418,7 +418,7 @@ htsbuf_append_and_escape_url(htsbuf_queue_t *hq, const char *s) static const char hexchars[16] = "0123456789ABCDEF"; buf[0] = '%'; buf[1] = hexchars[(C >> 4) & 0xf]; - buf[2] = hexchars[C & 0xf];; + buf[2] = hexchars[C & 0xf]; buf[3] = 0; esc = buf; }