From cae0d4a43bdc46586217a1e0375f5d59cadd1fba Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sun, 2 Nov 2008 00:21:49 +0000 Subject: Change memory allocations to MEMF_PRIVATE to enable paging on OS4.1. svn path=/trunk/netsurf/; revision=5649 --- amiga/hotlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'amiga/hotlist.c') diff --git a/amiga/hotlist.c b/amiga/hotlist.c index 9a3267790..a5ca71e7b 100755 --- a/amiga/hotlist.c +++ b/amiga/hotlist.c @@ -84,7 +84,7 @@ void ami_hotlist_init(struct tree **hotlist) int i; const struct url_data *data; - *hotlist = AllocVec(sizeof(struct tree),MEMF_CLEAR); + *hotlist = AllocVec(sizeof(struct tree),MEMF_PRIVATE | MEMF_CLEAR); hotlist_tree = *hotlist; if (!hotlist_tree) { -- cgit v1.2.3