summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Sidwell <andy@entai.co.uk>2008-08-02 16:12:57 +0000
committerAndrew Sidwell <andy@entai.co.uk>2008-08-02 16:12:57 +0000
commita2f14f891ed143638675026aac42adf18f8373e5 (patch)
treed252f6324af967e35eaa7703838c775dba8c1c73
parent6228480959a21db776dcd04684f427942e83bc42 (diff)
downloadlibhubbub-a2f14f891ed143638675026aac42adf18f8373e5.tar.gz
libhubbub-a2f14f891ed143638675026aac42adf18f8373e5.tar.bz2
Get perf/hubbub.c building again after removing the "internal encoding" argument from hubbub_parser_create().
svn path=/trunk/hubbub/; revision=4866
-rw-r--r--perf/hubbub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perf/hubbub.c b/perf/hubbub.c
index c273377..92f2026 100644
--- a/perf/hubbub.c
+++ b/perf/hubbub.c
@@ -134,7 +134,7 @@ int main(int argc, char **argv)
/* Initialise library */
assert(hubbub_initialise(argv[1], myrealloc, NULL) == HUBBUB_OK);
- parser = hubbub_parser_create("UTF-8", "UTF-8", myrealloc, NULL);
+ parser = hubbub_parser_create("UTF-8", myrealloc, NULL);
assert(parser != NULL);
params.tree_handler = &tree_handler;