From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=49316 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ONAN3-0004ez-QO for qemu-devel@nongnu.org; Fri, 11 Jun 2010 15:58:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ONAN2-0004R4-Sw for qemu-devel@nongnu.org; Fri, 11 Jun 2010 15:58:29 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49740) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ONAN2-0004Qk-Lp for qemu-devel@nongnu.org; Fri, 11 Jun 2010 15:58:28 -0400 From: Luiz Capitulino Date: Fri, 11 Jun 2010 16:58:10 -0300 Message-Id: <1276286295-17601-6-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1276286295-17601-1-git-send-email-lcapitulino@redhat.com> References: <1276286295-17601-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 05/10] json-lexer: Drop 'buf' List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com Cc: qemu-devel@nongnu.org QString supports adding a single char, 'buf' is unneeded. Signed-off-by: Luiz Capitulino --- json-lexer.c | 7 +------ 1 files changed, 1 insertions(+), 6 deletions(-) diff --git a/json-lexer.c b/json-lexer.c index 5cc7e6c..1d9b81f 100644 --- a/json-lexer.c +++ b/json-lexer.c @@ -284,8 +284,6 @@ void json_lexer_init(JSONLexer *lexer, JSONLexerEmitter func) static int json_lexer_feed_char(JSONLexer *lexer, char ch) { - char buf[2]; - lexer->x++; if (ch == '\n') { lexer->x = 0; @@ -313,10 +311,7 @@ static int json_lexer_feed_char(JSONLexer *lexer, char ch) break; } - buf[0] = ch; - buf[1] = 0; - - qstring_append(lexer->token, buf); + qstring_append_chr(lexer->token, ch); return 0; } -- 1.7.1.251.g92a7