summaryrefslogtreecommitdiff
path: root/test/tokeniser.c
diff options
context:
space:
mode:
authorAndrew Sidwell <andy@entai.co.uk>2008-08-09 19:34:52 +0000
committerAndrew Sidwell <andy@entai.co.uk>2008-08-09 19:34:52 +0000
commit6481bd7f3a503573c31b224dfde229dce2e9b68f (patch)
tree0b6caa76845679dad3de650979ab01bca8bb2a79 /test/tokeniser.c
parent14fc365f4e090760b853a004ba145954dae23be4 (diff)
downloadlibhubbub-6481bd7f3a503573c31b224dfde229dce2e9b68f.tar.gz
libhubbub-6481bd7f3a503573c31b224dfde229dce2e9b68f.tar.bz2
Propagate the use of hubbub_error up into at least a bit of the treebuilder.
svn path=/trunk/hubbub/; revision=4979
Diffstat (limited to 'test/tokeniser.c')
-rw-r--r--test/tokeniser.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/tokeniser.c b/test/tokeniser.c
index 0ccf264..77635bc 100644
--- a/test/tokeniser.c
+++ b/test/tokeniser.c
@@ -11,7 +11,7 @@
#include "testutils.h"
-static void token_handler(const hubbub_token *token, void *pw);
+static hubbub_error token_handler(const hubbub_token *token, void *pw);
static void *myrealloc(void *ptr, size_t len, void *pw)
{
@@ -98,7 +98,7 @@ int main(int argc, char **argv)
return 0;
}
-void token_handler(const hubbub_token *token, void *pw)
+hubbub_error token_handler(const hubbub_token *token, void *pw)
{
static const char *token_names[] = {
"DOCTYPE", "START TAG", "END TAG",
@@ -177,4 +177,6 @@ void token_handler(const hubbub_token *token, void *pw)
printf("\n");
break;
}
+
+ return HUBBUB_OK;
}