summaryrefslogtreecommitdiff
path: root/test/tokeniser.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-11-08 23:20:42 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-11-08 23:20:42 +0000
commitf3c6e30f43c8e9feec891d68cc3eee99c3ef6264 (patch)
tree4c7c425167bc6cdb75666db1ceb2194ce8fab8ec /test/tokeniser.c
parent6df8f99a707326655b4f285920f19fef6d9eb90a (diff)
downloadlibhubbub-f3c6e30f43c8e9feec891d68cc3eee99c3ef6264.tar.gz
libhubbub-f3c6e30f43c8e9feec891d68cc3eee99c3ef6264.tar.bz2
Port hubbub to new lpu API
svn path=/trunk/hubbub/; revision=5656
Diffstat (limited to 'test/tokeniser.c')
-rw-r--r--test/tokeniser.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/tokeniser.c b/test/tokeniser.c
index 77635bc..913b66f 100644
--- a/test/tokeniser.c
+++ b/test/tokeniser.c
@@ -38,9 +38,8 @@ int main(int argc, char **argv)
/* Initialise library */
assert(hubbub_initialise(argv[1], myrealloc, NULL) == HUBBUB_OK);
- stream = parserutils_inputstream_create("UTF-8", 0, NULL,
- myrealloc, NULL);
- assert(stream != NULL);
+ assert(parserutils_inputstream_create("UTF-8", 0, NULL,
+ myrealloc, NULL, &stream) == PARSERUTILS_OK);
tok = hubbub_tokeniser_create(stream, myrealloc, NULL);
assert(tok != NULL);