From 64f607760bc27a745ee8946c2425349360424564 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 23 Mar 2014 11:33:32 +0000 Subject: add backing store storage path to browser initialisation --- beos/gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'beos') diff --git a/beos/gui.cpp b/beos/gui.cpp index 4077a8580..56d5bfe99 100644 --- a/beos/gui.cpp +++ b/beos/gui.cpp @@ -1062,7 +1062,7 @@ int main(int argc, char** argv) /* common initialisation */ BPath messages = get_messages_path(); - ret = netsurf_init(messages.Path()); + ret = netsurf_init(messages.Path(), NULL); if (ret != NSERROR_OK) { die("NetSurf failed to initialise"); } @@ -1115,7 +1115,7 @@ int gui_init_replicant(int argc, char** argv) /* common initialisation */ BPath messages = get_messages_path(); - ret = netsurf_init(messages.Path()); + ret = netsurf_init(messages.Path(), NULL); if (ret != NSERROR_OK) { // FIXME: must not die when in replicant! die("NetSurf failed to initialise"); -- cgit v1.2.3