summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-04-07 12:09:38 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-04-07 12:09:38 +0000
commitf310569df45de6d456562f409aef18138bf0a4e1 (patch)
tree8d4916c6b3500c50b939e7c4ca175d2f4b461ce2 /amiga
parentbbd757c34a15226135ec088f014522712e9adcc2 (diff)
downloadnetsurf-f310569df45de6d456562f409aef18138bf0a4e1.tar.gz
netsurf-f310569df45de6d456562f409aef18138bf0a4e1.tar.bz2
Calling a hlcache_handle "content" is confusing.
svn path=/trunk/netsurf/; revision=10266
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/hotlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/amiga/hotlist.c b/amiga/hotlist.c
index da1fe2399..71c5ddbba 100755
--- a/amiga/hotlist.c
+++ b/amiga/hotlist.c
@@ -43,11 +43,11 @@ static const struct {
};
#define ENTRIES_COUNT (sizeof(default_entries) / sizeof(default_entries[0]))
-void hotlist_visited(hlcache_handle *content)
+void hotlist_visited(hlcache_handle *c)
{
- if ((!content) || (!content_get_url(content)) || (!hotlist))
+ if ((!c) || (!content_get_url(c)) || (!hotlist))
return;
- ami_gui_hotlist_visited(content, hotlist, hotlist->root);
+ ami_gui_hotlist_visited(c, hotlist, hotlist->root);
}
/**