summaryrefslogtreecommitdiff
path: root/amiga/font_bullet.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2016-05-01 14:00:47 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2016-05-01 14:00:47 +0100
commit4d18947adb21aa3e06f2431900111ad17b58d80d (patch)
treedfd8054c3a3ecc754b542a2c5d12b3dcddf49a6f /amiga/font_bullet.c
parent67805f407fed6fbc061f83db7e11ee3474a0a79b (diff)
downloadnetsurf-4d18947adb21aa3e06f2431900111ad17b58d80d.tar.gz
netsurf-4d18947adb21aa3e06f2431900111ad17b58d80d.tar.bz2
Update to new warn_user API
Diffstat (limited to 'amiga/font_bullet.c')
-rw-r--r--amiga/font_bullet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amiga/font_bullet.c b/amiga/font_bullet.c
index 81d41ddc9..3032b9735 100644
--- a/amiga/font_bullet.c
+++ b/amiga/font_bullet.c
@@ -345,7 +345,7 @@ static struct ami_font_cache_node *ami_font_open(const char *font, bool critical
nodedata = ami_font_cache_alloc_entry(font);
if(nodedata == NULL) {
- warn_user("NoMemory", "");
+ amiga_warn_user("NoMemory", "");
return NULL;
}
@@ -354,7 +354,7 @@ static struct ami_font_cache_node *ami_font_open(const char *font, bool critical
if(!nodedata->font)
{
LOG("Requested font not found: %s", font);
- if(critical == true) warn_user("CompError", font);
+ if(critical == true) amiga_warn_user("CompError", font);
FreeVec(nodedata);
return NULL;
}