formatting

This commit is contained in:
Sven M. Hallberg 2013-05-11 23:41:47 +02:00
parent d81d820dca
commit fdcfc243b8

View file

@ -205,11 +205,11 @@ HParseResult *h_llk_parse(HAllocator* mm__, const HParser* parser, HInputStream*
while(!h_slist_empty(stack)) {
// fill up lookahead buffer as required
if(lookahead == 0) {
uint8_t c = h_read_bits(stream, 8, false);
if(stream->overrun)
lookahead = end_token;
else
lookahead = char_token(c);
uint8_t c = h_read_bits(stream, 8, false);
if(stream->overrun)
lookahead = end_token;
else
lookahead = char_token(c);
}
// pop top of stack for inspection