summaryrefslogtreecommitdiff
path: root/amiga/hotlist.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2008-11-02 00:21:49 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2008-11-02 00:21:49 +0000
commitcae0d4a43bdc46586217a1e0375f5d59cadd1fba (patch)
treeeed7fbc185815f0ee0003da2ad5c00e5acc435f4 /amiga/hotlist.c
parent124899e5bc2b18c93e943950056a7e22318be125 (diff)
downloadnetsurf-cae0d4a43bdc46586217a1e0375f5d59cadd1fba.tar.gz
netsurf-cae0d4a43bdc46586217a1e0375f5d59cadd1fba.tar.bz2
Change memory allocations to MEMF_PRIVATE to enable paging on OS4.1.
svn path=/trunk/netsurf/; revision=5649
Diffstat (limited to 'amiga/hotlist.c')
-rwxr-xr-xamiga/hotlist.c2
1 files changed, 1 insertions, 1 deletions
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) {