Fix a missing return warning.

This commit is contained in:
Dylan Thacker-Smith
2014-02-27 18:47:55 -05:00
parent a48b245e6e
commit 06bef40527

View File

@@ -26,6 +26,7 @@ static VALUE rb_initialize(VALUE self, VALUE source)
Data_Get_Struct(self, struct liquid_tokenizer, tokenizer);
tokenizer->cursor = RSTRING_PTR(source);
tokenizer->length = RSTRING_LEN(source);
return Qnil;
}
void liquid_tokenizer_next(struct liquid_tokenizer *tokenizer, struct token *token)