From 58fa47a503abcb121f4ab91607f837b8dbb12794 Mon Sep 17 00:00:00 2001 From: Andrew Canaday Date: Mon, 23 Nov 2015 14:42:35 -0500 Subject: [PATCH] C89 tweaks as per #348. --- lib/parsers.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/parsers.c b/lib/parsers.c index 663b9d34b..ef9c3e753 100644 --- a/lib/parsers.c +++ b/lib/parsers.c @@ -180,12 +180,13 @@ static signed char char_to_hex(const char c) static int issue_char(struct libwebsocket *wsi, unsigned char c) { + unsigned short frag_len; if (wsi->u.hdr.ah->pos == sizeof(wsi->u.hdr.ah->data)) { lwsl_warn("excessive header content\n"); return -1; } - unsigned short frag_len = \ + frag_len = \ wsi->u.hdr.ah->frags[wsi->u.hdr.ah->next_frag_index].len; /* If we haven't hit the token limit, just copy the character into * the header: */