summaryrefslogtreecommitdiff
path: root/docs/raptor-tutorial-parsing.xml
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2006-08-19 23:08:16 +0000
committerDave Beckett <dave@dajobe.org>2006-08-19 23:08:16 +0000
commit744b4ebeebb94d055dfa69a36664f41beb7f8ccc (patch)
tree2e2e7f42894848fccbe417641fb90f5f42de265a /docs/raptor-tutorial-parsing.xml
parentf3542060da3c8b1965928c22afc0296b1866f16d (diff)
downloadraptor-744b4ebeebb94d055dfa69a36664f41beb7f8ccc.tar.gz
Update for uri filter arg change
Diffstat (limited to 'docs/raptor-tutorial-parsing.xml')
-rw-r--r--docs/raptor-tutorial-parsing.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/raptor-tutorial-parsing.xml b/docs/raptor-tutorial-parsing.xml
index 1b1f94dd..97162e7b 100644
--- a/docs/raptor-tutorial-parsing.xml
+++ b/docs/raptor-tutorial-parsing.xml
@@ -444,7 +444,7 @@ void write_bytes_handler(raptor_www* www, void *user_data,
raptor_parse_chunk(rdf_parser, (unsigned char*)ptr, size*nmemb, 0);
}
-int uri_filter(raptor_www* www, void* filter_user_data, raptor_uri* uri) {
+int uri_filter(void* filter_user_data, raptor_uri* uri) {
/* return non-0 to forbid the request */
}
@@ -489,7 +489,7 @@ the <link linkend="tutorial-filter-network-www-uri-filter">previous section</lin
</para>
<programlisting>
- int uri_filter(raptor_www* www, void* filter_user_data, raptor_uri* uri) {
+ int uri_filter(void* filter_user_data, raptor_uri* uri) {
/* return non-0 to forbid the request */
}