From 24fb50b120a1d56e033b53d455fcc3e877b3eea4 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Fri, 7 May 2004 19:14:54 +0000 Subject: [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 --- riscos/history.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'riscos/history.c') 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); -- cgit v1.2.3