summaryrefslogtreecommitdiff
path: root/test/llcache.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/llcache.c')
-rw-r--r--test/llcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/llcache.c b/test/llcache.c
index df51386a5..8aae357b0 100644
--- a/test/llcache.c
+++ b/test/llcache.c
@@ -95,7 +95,7 @@ char *url_to_path(const char *url)
char *url_path;
char *path = NULL;
- if (url_unescape(url, 0, &url_path) == NSERROR_OK) {
+ if (url_unescape(url, 0, NULL, &url_path) == NSERROR_OK) {
/* return the absolute path including leading / */
path = strdup(url_path + (FILE_SCHEME_PREFIX_LEN - 1));
free(url_path);