summaryrefslogtreecommitdiff
path: root/amiga/gui.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-05-27 00:15:34 +0100
committerVincent Sanders <vince@kyllikki.org>2014-05-27 00:15:34 +0100
commit1966649c83615a16db678418947147d6f08cc749 (patch)
tree144f4e7ac46d3e5c9e640ce17f59900040f02d9c /amiga/gui.c
parent688f60d9636941c4aeb5959bf15bcee743af0fe6 (diff)
downloadnetsurf-1966649c83615a16db678418947147d6f08cc749.tar.gz
netsurf-1966649c83615a16db678418947147d6f08cc749.tar.bz2
fix amiga build to use correct nsurl acessor function
Diffstat (limited to 'amiga/gui.c')
-rw-r--r--amiga/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index b7edf5e1e..19064f938 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -915,7 +915,7 @@ static void gui_init2(int argc, char** argv)
if(!temp_homepage_url) {
nsurl *temp_url;
if (netsurf_path_to_nsurl(fullpath, &temp_url) == NSERROR_OK) {
- temp_homepage_url = strdup(nsurl_data(temp_url));
+ temp_homepage_url = strdup(nsurl_access(temp_url));
nsurl_unref(temp_url);
}
}