summaryrefslogtreecommitdiff
path: root/amiga/font_cache.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-04-20 15:54:18 +0100
committerVincent Sanders <vince@kyllikki.org>2016-04-20 15:54:18 +0100
commit31de1c251b5c6f6a39f6f7500e28c6086b807953 (patch)
tree5f075182e8972adba6b4af2f89628ca6831d6477 /amiga/font_cache.c
parent3930d00519bbcee968a804b1f445c1638531cc15 (diff)
downloadnetsurf-31de1c251b5c6f6a39f6f7500e28c6086b807953.tar.gz
netsurf-31de1c251b5c6f6a39f6f7500e28c6086b807953.tar.bz2
Cleanup amiga include issues introduced as part of core updates
Diffstat (limited to 'amiga/font_cache.c')
-rw-r--r--amiga/font_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/font_cache.c b/amiga/font_cache.c
index e3f107dd8..ea285730a 100644
--- a/amiga/font_cache.c
+++ b/amiga/font_cache.c
@@ -69,7 +69,7 @@ static void ami_font_cache_cleanup(struct SkipList *skiplist)
SubTime(&curtime, &node->lastused);
if(curtime.Seconds > 300)
{
- LOG("Freeing font %lx not used for %ld seconds", node->skip_node.sn_Key, curtime.Seconds);
+ LOG("Freeing font %p not used for %ld seconds", node->skip_node.sn_Key, curtime.Seconds);
ami_font_bullet_close(node);
RemoveSkipNode(skiplist, node->skip_node.sn_Key);
}