summaryrefslogtreecommitdiff
path: root/beos/gui.cpp
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-03-23 11:33:32 +0000
committerVincent Sanders <vince@kyllikki.org>2014-05-13 15:53:06 +0100
commit64f607760bc27a745ee8946c2425349360424564 (patch)
tree4ed7eff0adc175dcc8ba8366aa0da4ab4bc39334 /beos/gui.cpp
parent05932293f659c0edfaa0352208ff2a89712b71ac (diff)
downloadnetsurf-64f607760bc27a745ee8946c2425349360424564.tar.gz
netsurf-64f607760bc27a745ee8946c2425349360424564.tar.bz2
add backing store storage path to browser initialisation
Diffstat (limited to 'beos/gui.cpp')
-rw-r--r--beos/gui.cpp4
1 files changed, 2 insertions, 2 deletions
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");