From b51d407bca5a613fe8a2b3191c90abdb216e275b Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Mon, 9 Oct 2017 09:24:56 +0200 Subject: [PATCH] htsbuf: remove double ;; in htsbuf_append_and_escape_url() --- src/htsbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2