From ff6f6cf29dbe18a2541ba73c2542253c5ffb0abc Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Wed, 26 Jan 2011 12:41:47 +0000 Subject: Fix renaming of css_parser_parse_chunk from css_parser_css__parse_chunk to css__parser_parse_chunk svn path=/trunk/libcss/; revision=11491 --- test/parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/parse.c') diff --git a/test/parse.c b/test/parse.c index 255cd5b..aaa9e2f 100644 --- a/test/parse.c +++ b/test/parse.c @@ -112,7 +112,7 @@ int main(int argc, char **argv) size_t read = fread(buf, 1, CHUNK_SIZE, fp); assert(read == CHUNK_SIZE); - error = css_parser_css__parse_chunk(parser, buf, CHUNK_SIZE); + error = css__parser_parse_chunk(parser, buf, CHUNK_SIZE); assert(error == CSS_OK || error == CSS_NEEDDATA); len -= CHUNK_SIZE; @@ -122,7 +122,7 @@ int main(int argc, char **argv) size_t read = fread(buf, 1, len, fp); assert(read == len); - error = css_parser_css__parse_chunk(parser, buf, len); + error = css__parser_parse_chunk(parser, buf, len); assert(error == CSS_OK || error == CSS_NEEDDATA); len = 0; -- cgit v1.2.3