summaryrefslogtreecommitdiff
path: root/riscos/history.c
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-05-07 19:14:54 +0000
committerJames Bursa <james@netsurf-browser.org>2004-05-07 19:14:54 +0000
commit24fb50b120a1d56e033b53d455fcc3e877b3eea4 (patch)
tree2c7aebb7557766b190ecf47a76dda403ed56c10a /riscos/history.c
parent9d9f208d7e7a9f8d8ef3dc8b481f21e5db428471 (diff)
downloadnetsurf-24fb50b120a1d56e033b53d455fcc3e877b3eea4.tar.gz
netsurf-24fb50b120a1d56e033b53d455fcc3e877b3eea4.tar.bz2
[project @ 2004-05-07 19:14:54 by bursa]
Implement multitasking warning dialog. Warn user if resolvers not set. svn path=/import/netsurf/; revision=841
Diffstat (limited to 'riscos/history.c')
-rw-r--r--riscos/history.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscos/history.c b/riscos/history.c
index f29dd8ad4..93d07557a 100644
--- a/riscos/history.c
+++ b/riscos/history.c
@@ -81,7 +81,7 @@ struct history *history_create(void)
history = malloc(sizeof *history);
if (!history) {
- warn_user("NoMemory");
+ warn_user("NoMemory", 0);
return 0;
}
@@ -119,7 +119,7 @@ void history_add(struct history *history, struct content *content)
url = strdup(content->url);
title = strdup(content->title ? content->title : url);
if (!entry || !url || !title) {
- warn_user("NoMemory");
+ warn_user("NoMemory", 0);
free(entry);
free(url);
free(title);