summaryrefslogtreecommitdiff
path: root/frontends/windows/fetch.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-12-10 22:48:42 +0000
committerVincent Sanders <vince@kyllikki.org>2019-12-10 23:12:10 +0000
commit77d184913b64b1613ac70acb23c1230c5ec41e67 (patch)
treecb3c7e023def8a5047bf783c46a09172d460355e /frontends/windows/fetch.c
parent56ddeed96c10bae6e67b7e15ee6fa982a0f40b3f (diff)
downloadnetsurf-77d184913b64b1613ac70acb23c1230c5ec41e67.tar.gz
netsurf-77d184913b64b1613ac70acb23c1230c5ec41e67.tar.bz2
rename global resource path variables in win32 frontend
Diffstat (limited to 'frontends/windows/fetch.c')
-rw-r--r--frontends/windows/fetch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/windows/fetch.c b/frontends/windows/fetch.c
index f69d7ad19..287f20f6c 100644
--- a/frontends/windows/fetch.c
+++ b/frontends/windows/fetch.c
@@ -79,7 +79,7 @@ static nsurl *nsw32_get_resource_url(const char *path)
char buf[PATH_MAX];
nsurl *url = NULL;
- netsurf_path_to_nsurl(filepath_sfind(respaths, buf, path), &url);
+ netsurf_path_to_nsurl(filepath_sfind(G_resource_pathv, buf, path), &url);
return url;
}