From 33b37afeab6180e4fdc3c97f7f6cc713686ac6a9 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Thu, 20 Jan 2011 11:59:46 +0000 Subject: Ensure there are zero global symbols without css_ or css__ in front of them. This helps prevent confusion if someone else wants a function called parse_background or similar svn path=/trunk/libcss/; revision=11416 --- 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 efb555e..255cd5b 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_parse_chunk(parser, buf, CHUNK_SIZE); + error = css_parser_css__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_parse_chunk(parser, buf, len); + error = css_parser_css__parse_chunk(parser, buf, len); assert(error == CSS_OK || error == CSS_NEEDDATA); len = 0; -- cgit v1.2.3