summaryrefslogtreecommitdiff
path: root/src/raptor_uri.c
diff options
context:
space:
mode:
authorLauri Aalto <laalto@iki.fi>2008-01-11 08:08:35 +0000
committerLauri Aalto <laalto@iki.fi>2008-01-11 08:08:35 +0000
commit17993164d6cca11e988d303b7578986b10d2037a (patch)
tree737ef4031abc4317f18f675227a85c541197d760 /src/raptor_uri.c
parent38a94faed366a6c609b337e89696d96fe3875169 (diff)
downloadraptor-17993164d6cca11e988d303b7578986b10d2037a.tar.gz
Changed raptor internal init functions to return error codes.
Diffstat (limited to 'src/raptor_uri.c')
-rw-r--r--src/raptor_uri.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/raptor_uri.c b/src/raptor_uri.c
index 02eb99f1..6e6e72d4 100644
--- a/src/raptor_uri.c
+++ b/src/raptor_uri.c
@@ -981,10 +981,11 @@ static const raptor_uri_handler raptor_uri_default_handler = {
};
-void
+int
raptor_uri_init(void)
{
raptor_uri_set_handler(&raptor_uri_default_handler, NULL);
+ return 0;
}