summaryrefslogtreecommitdiff
path: root/amiga/hotlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'amiga/hotlist.c')
-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);
}
/**