aboutsummaryrefslogtreecommitdiffstats
path: root/json-lexer.c
diff options
context:
space:
mode:
authorLuiz Capitulino <lcapitulino@redhat.com>2010-05-17 17:59:00 -0300
committerLuiz Capitulino <lcapitulino@redhat.com>2010-06-11 15:25:14 -0300
commitecb50f5fefe7e1360818bd199218a295d87df042 (patch)
tree0e6ed8efe43ca89d6723d60c435ec05689b887e5 /json-lexer.c
parentd22b0bd7fc85f991275ffc60a550ed42f4c1b04c (diff)
json-lexer: Drop 'buf'
QString supports adding a single char, 'buf' is unneeded. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'json-lexer.c')
-rw-r--r--json-lexer.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/json-lexer.c b/json-lexer.c
index 5cc7e6c9a..1d9b81fef 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;
}